Last active
October 9, 2019 05:52
-
-
Save Nurlan199206/809ed99154a1e9b3724bb2e1c12d2e9b to your computer and use it in GitHub Desktop.
liveness & readiness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
livenessProbe: | |
failureThreshold: 10 | |
initialDelaySeconds: 30 | |
periodSeconds: 30 | |
successThreshold: 1 | |
tcpSocket: | |
port: 8080 | |
timeoutSeconds: 3 | |
name: default | |
readinessProbe: | |
failureThreshold: 10 | |
initialDelaySeconds: 30 | |
periodSeconds: 30 | |
successThreshold: 1 | |
tcpSocket: | |
port: 8080 | |
timeoutSeconds: 3 | |
spec: | |
progressDeadlineSeconds: 600 | |
replicas: 1 | |
strategy: | |
rollingUpdate: | |
maxSurge: 1 | |
maxUnavailable: 0 | |
type: RollingUpdate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment