fix(nightscout): use TCP probe to avoid 401 from auth-gated status endpoint

This commit is contained in:
funman300
2026-05-18 15:45:23 -07:00
parent e4473578dc
commit 08cb555ce9
+2 -4
View File
@@ -25,14 +25,12 @@ spec:
- secretRef: - secretRef:
name: nightscout-secret name: nightscout-secret
livenessProbe: livenessProbe:
httpGet: tcpSocket:
path: /api/v1/status
port: 1337 port: 1337
initialDelaySeconds: 60 initialDelaySeconds: 60
periodSeconds: 30 periodSeconds: 30
readinessProbe: readinessProbe:
httpGet: tcpSocket:
path: /api/v1/status
port: 1337 port: 1337
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10