Skip to content
Snippets Groups Projects

Add liveness and startup probes to the OKD configs

2 files
+ 41
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -41,6 +41,26 @@ spec:
requests:
cpu: 300m
memory: 384Mi
startupProbe:
httpGet:
path: /working-groups/q/health
port: 8090
scheme: HTTP
timeoutSeconds: 1
initialDelaySeconds: 20
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
livenessProbe:
httpGet:
path: /working-groups/q/health
port: 8090
scheme: HTTP
timeoutSeconds: 1
initialDelaySeconds: 60
periodSeconds: 60
successThreshold: 1
failureThreshold: 3
env:
- name: CONFIG_SECRET_PATH
value: "/run/secrets/working-groups-api/secret.properties"
Loading