07 May 2022
| #japan
| #money
The internet wisdom seems to agree that shared accounts (or joint accounts) are illegal and impossible in Japan.
As a workaround some banks will issue a second card in the name of the spouse (e.g. SMBC), however that’s generally only available for married couples.
So if you live with a partner, but not married, you are out of luck?
Not entirely.
Read more
28 Dec 2021
| #japan
My partner is Japanese, and speaks English, while my family is Hungarian and speak varying levels of English. This Christmas we had an online board game/party game session, and I got to pick the games.
Read more
07 Oct 2021
| #tech
| #security
I’m running Snyk to scan docker images and break the build if they have high or critical vulnerabilities:
snyk test --severity-threshold=high --docker $IMAGE_NAME
However sometimes the upstream image has high or critical vulnerabilities (e.g. at the times of writing this, debian
), so there is very little action one can take (other than moving to a different base image, which is usually not easy). Thus I only want to break the build if there are high or critical vulnerabilities AND they can be fixed by ugrading the base image.
Read more
22 Sep 2021
| #tech
Recently I was working on setting up istio in a multi-cluster setup following the Install Multi-Primary on different networks guide on EKS clusters. Everything seemed to work (no errors in logs), until I reached the verification step, where requests didn’t go to the other mesh: in CLUSTER1
I always got a response from Hello version: v1, instance: helloworld-v1-86f77cd7bd-cpxhv
, while in CLUSTER2
always from Hello version: v2, instance: helloworld-v2-758dd55874-6x4t8
.
Read more
17 Sep 2021
| #tech
I’m creating a new kubernetes_secret
via Terraform for an existing service account like this:
resource "kubernetes_secret" "my_service_account_token" {
metadata {
name = "my-service-account-token"
namespace = "example"
annotations = {
"kubernetes.io/service-account.name" = "my-service-account"
}
}
type = "kubernetes.io/service-account-token"
}
so that then I can use this token elsewhere like: kubernetes_secret.my_service_account_token.data["token"]
.
Read more