Skip to content

Instantly share code, notes, and snippets.

@viggin543
Created April 17, 2020 18:31
Show Gist options
  • Save viggin543/3f6a11fbf39a9a1791e914e204b8e657 to your computer and use it in GitHub Desktop.
Save viggin543/3f6a11fbf39a9a1791e914e204b8e657 to your computer and use it in GitHub Desktop.
a fragment of the deployment yaml
#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