diff --git a/clowdapp.yaml b/clowdapp.yaml index 8b2adb9e..1b2d895a 100644 --- a/clowdapp.yaml +++ b/clowdapp.yaml @@ -28,6 +28,26 @@ objects: limits: cpu: ${CPU_LIMIT} memory: ${MEMORY_LIMIT} + livenessProbe: + failureThreshold: 3 + httpGet: + path: /metrics + port: 9000 + scheme: HTTP + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 3 + readinessProbe: + httpGet: + path: /metrics + port: 9000 + scheme: HTTP + initialDelaySeconds: 3 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 + timeoutSeconds: 3 env: - name: CLOWDER_ENABLED value: ${CLOWDER_ENABLED}