diff --git a/apps/dozzle/deployment.yaml b/apps/dozzle/deployment.yaml index a55d942..b0b31c9 100644 --- a/apps/dozzle/deployment.yaml +++ b/apps/dozzle/deployment.yaml @@ -42,25 +42,25 @@ spec: httpGet: path: /healthcheck port: 8080 - initialDelaySeconds: 5 - periodSeconds: 2 - timeoutSeconds: 1 + initialDelaySeconds: 10 + periodSeconds: 3 + timeoutSeconds: 5 successThreshold: 1 - failureThreshold: 15 + failureThreshold: 20 readinessProbe: httpGet: path: /healthcheck port: 8080 - periodSeconds: 5 - timeoutSeconds: 1 + periodSeconds: 10 + timeoutSeconds: 5 successThreshold: 1 - failureThreshold: 2 + failureThreshold: 3 livenessProbe: httpGet: path: /healthcheck port: 8080 - periodSeconds: 10 - timeoutSeconds: 1 + periodSeconds: 30 + timeoutSeconds: 5 successThreshold: 1 failureThreshold: 3 volumeMounts: @@ -68,11 +68,11 @@ spec: mountPath: /data resources: limits: - cpu: 500m - memory: 512Mi + cpu: 1000m + memory: 1Gi requests: - cpu: 100m - memory: 128Mi + cpu: 250m + memory: 256Mi - name: oauth2-proxy image: quay.io/oauth2-proxy/oauth2-proxy:latest ports: