Hybrid cloud cluster monorepo with Ansible, K8s, NixOS, and Terraform. cute.haus
ansible terraform nix k8s
1

Configure Feed

Select the types of activity you want to include in your feed.

k8s: add fast failover tolerations to aly-codes, error-pages, switchyard

Aly Raffauf (Jul 2, 2026, 1:42 AM EDT) c0d0ead8 c4848b21

+27
+9
k8s/charts/aly-codes/templates/deployment.yaml
··· 19 19 securityContext: 20 20 seccompProfile: 21 21 type: RuntimeDefault 22 + tolerations: 23 + - key: node.kubernetes.io/not-ready 24 + operator: Exists 25 + effect: NoExecute 26 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 27 + - key: node.kubernetes.io/unreachable 28 + operator: Exists 29 + effect: NoExecute 30 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 22 31 topologySpreadConstraints: 23 32 - maxSkew: 1 24 33 topologyKey: topology.kubernetes.io/zone
+9
k8s/charts/error-pages/templates/deployment.yaml
··· 19 19 securityContext: 20 20 seccompProfile: 21 21 type: RuntimeDefault 22 + tolerations: 23 + - key: node.kubernetes.io/not-ready 24 + operator: Exists 25 + effect: NoExecute 26 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 27 + - key: node.kubernetes.io/unreachable 28 + operator: Exists 29 + effect: NoExecute 30 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 22 31 containers: 23 32 - name: {{ .Chart.Name }} 24 33 image: ghcr.io/tarampampam/error-pages:4@sha256:978c1f83e8f26742743ec3b565214ed9f2296cb5171b592071a6569dceac8c26
+9
k8s/charts/switchyard/templates/deployment.yaml
··· 19 19 securityContext: 20 20 seccompProfile: 21 21 type: RuntimeDefault 22 + tolerations: 23 + - key: node.kubernetes.io/not-ready 24 + operator: Exists 25 + effect: NoExecute 26 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 27 + - key: node.kubernetes.io/unreachable 28 + operator: Exists 29 + effect: NoExecute 30 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 22 31 topologySpreadConstraints: 23 32 - maxSkew: 1 24 33 topologyKey: topology.kubernetes.io/zone