Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase threshold of failure for liveness/readiness probes #665

Merged
merged 1 commit into from Nov 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 7 additions & 3 deletions apps/mdn/mdn-aws/k8s/kuma.deploy.yaml.j2
Expand Up @@ -20,13 +20,17 @@
- name: Host
value: {{ KUMA_ALLOWED_HOSTS.split(',')[0].strip() }}
initialDelaySeconds: 20
periodSeconds: 3
periodSeconds: 12
timeoutSeconds: 10
failureThreshold: 6
readinessProbe:
httpGet:
path: /readiness
port: {{ KUMA_CONTAINER_PORT }}
httpHeaders:
- name: Host
value: {{ KUMA_ALLOWED_HOSTS.split(',')[0].strip() }}
initialDelaySeconds: 20
periodSeconds: 3
initialDelaySeconds: 10
periodSeconds: 6
timeoutSeconds: 5
failureThreshold: 3
10 changes: 7 additions & 3 deletions apps/mdn/mdn-aws/k8s/kumascript.deploy.yaml.j2
Expand Up @@ -72,11 +72,15 @@ spec:
httpGet:
path: /healthz
port: {{ KUMASCRIPT_CONTAINER_PORT }}
initialDelaySeconds: 10
periodSeconds: 3
initialDelaySeconds: 20
periodSeconds: 12
timeoutSeconds: 10
failureThreshold: 6
readinessProbe:
httpGet:
path: /readiness
port: {{ KUMASCRIPT_CONTAINER_PORT }}
initialDelaySeconds: 10
periodSeconds: 3
periodSeconds: 6
timeoutSeconds: 5
failureThreshold: 3