Created
April 17, 2020 18:31
-
-
Save viggin543/3f6a11fbf39a9a1791e914e204b8e657 to your computer and use it in GitHub Desktop.
a fragment of the deployment yaml
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
| #deployment.yaml | |
| resources: | |
| limits: | |
| memory: "256Mi" | |
| cpu: "500" | |
| requests: | |
| memory: "256Mi" | |
| cpu: "150m" | |
| ... | |
| livenessProbe: | |
| httpGet: | |
| path: /system/health/liveness | |
| port: 8080 | |
| initialDelaySeconds: 5 | |
| periodSeconds: 1 | |
| failureThreshold: 100 | |
| readinessProbe: | |
| httpGet: | |
| path: /system/health/readiness | |
| port: 8080 | |
| initialDelaySeconds: 5 | |
| periodSeconds: 1 | |
| failureThreshold: 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment