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

Configure Feed

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

k8s: add fast failover tolerations to tika and gotenberg

Aly Raffauf (Jul 1, 2026, 10:04 PM EDT) 1787d090 1f4a7a28

+18
+9
k8s/charts/gotenberg/templates/deployment.yaml
··· 21 21 securityContext: 22 22 seccompProfile: 23 23 type: RuntimeDefault 24 + tolerations: 25 + - key: node.kubernetes.io/not-ready 26 + operator: Exists 27 + effect: NoExecute 28 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 29 + - key: node.kubernetes.io/unreachable 30 + operator: Exists 31 + effect: NoExecute 32 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 24 33 containers: 25 34 - name: {{ .Chart.Name }} 26 35 image: gotenberg/gotenberg:8@sha256:67097317623a503ba2a6a7e9ae8db6929a1f7e1bbd88077bacf2d325fbdab923
+9
k8s/charts/tika/templates/deployment.yaml
··· 21 21 securityContext: 22 22 seccompProfile: 23 23 type: RuntimeDefault 24 + tolerations: 25 + - key: node.kubernetes.io/not-ready 26 + operator: Exists 27 + effect: NoExecute 28 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 29 + - key: node.kubernetes.io/unreachable 30 + operator: Exists 31 + effect: NoExecute 32 + tolerationSeconds: {{ $.Values.global.failover.fastTolerationSeconds | default 60 }} 24 33 containers: 25 34 - name: {{ .Chart.Name }} 26 35 image: apache/tika:3.3.1.0-full@sha256:d8e6ed96260ad89307a93195a1b856102987a818ac648502f8efbaf313d32470