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 health probes to aly-codes, error-pages, forward-auth, switchyard, uptime-kuma

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

+44 -2
+6 -1
k8s/charts/aly-codes/templates/deployment.yaml
··· 55 55 limits: 56 56 cpu: 100m 57 57 memory: 128Mi 58 + startupProbe: 59 + httpGet: 60 + path: / 61 + port: http 62 + periodSeconds: 5 63 + failureThreshold: 30 58 64 livenessProbe: 59 65 httpGet: 60 66 path: / 61 67 port: http 62 - initialDelaySeconds: 5 63 68 periodSeconds: 10 64 69 readinessProbe: 65 70 httpGet:
+6
k8s/charts/error-pages/templates/deployment.yaml
··· 45 45 limits: 46 46 cpu: 100m 47 47 memory: 32Mi 48 + startupProbe: 49 + httpGet: 50 + path: /healthz 51 + port: http 52 + periodSeconds: 5 53 + failureThreshold: 30 48 54 livenessProbe: 49 55 httpGet: 50 56 path: /healthz
+20
k8s/charts/forward-auth/templates/deployment.yaml
··· 67 67 name: forward-auth-{{ $key }}-oidc-env 68 68 resources: 69 69 {{- toYaml $.Values.resources | nindent 12 }} 70 + # No dedicated health endpoint; unauthenticated GET / returns a 3xx 71 + # redirect, which httpGet probes treat as success. 72 + startupProbe: 73 + httpGet: 74 + path: / 75 + port: http 76 + periodSeconds: 5 77 + failureThreshold: 30 78 + readinessProbe: 79 + httpGet: 80 + path: / 81 + port: http 82 + periodSeconds: 5 83 + failureThreshold: 2 84 + livenessProbe: 85 + httpGet: 86 + path: / 87 + port: http 88 + periodSeconds: 10 89 + failureThreshold: 5 70 90 {{- end }}
+6 -1
k8s/charts/switchyard/templates/deployment.yaml
··· 55 55 limits: 56 56 cpu: 100m 57 57 memory: 128Mi 58 + startupProbe: 59 + httpGet: 60 + path: / 61 + port: http 62 + periodSeconds: 5 63 + failureThreshold: 30 58 64 livenessProbe: 59 65 httpGet: 60 66 path: / 61 67 port: http 62 - initialDelaySeconds: 5 63 68 periodSeconds: 10 64 69 readinessProbe: 65 70 httpGet:
+6
k8s/charts/uptime-kuma/templates/deployment.yaml
··· 60 60 port: http 61 61 periodSeconds: 5 62 62 failureThreshold: 2 63 + livenessProbe: 64 + httpGet: 65 + path: / 66 + port: http 67 + periodSeconds: 10 68 + failureThreshold: 5 63 69 volumes: 64 70 - name: data 65 71 persistentVolumeClaim: