Skip to content
Snippets Groups Projects

Add liveness and startup probes to OKD configs

Merged Martin Lowe requested to merge malowe/eclipsefdn-cve-api:malowe/main/probes into main
All threads resolved!
2 files
+ 40
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -41,6 +41,26 @@ spec:
requests:
cpu: 300m
memory: 384Mi
startupProbe:
httpGet:
path: /q/health
port: 8090
scheme: HTTP
timeoutSeconds: 1
initialDelaySeconds: 20
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
livenessProbe:
httpGet:
path: /q/health
port: 8090
scheme: HTTP
timeoutSeconds: 1
initialDelaySeconds: 60
periodSeconds: 60
successThreshold: 1
failureThreshold: 3
env:
- name: CONFIG_SECRET_PATH
value: "/run/secrets/eclipsefdn-cve-api/secret.properties"
Loading