arshad75

probe.yaml

Jan 15th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. labels:
  5. test: <your-name>
  6. name: <your-name>
  7. spec:
  8. containers:
  9. - name: liveness
  10. image: lovescloud/java-app:latest
  11. args :
  12. - /bin/sh
  13. - -c
  14. - touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600
  15. livenessProbe:
  16. exec:
  17. command:
  18. - cat
  19. - /tmp/healthy
  20. initialDelaySeconds: 5
  21. periodSeconds: 5
  22. failureThreshold: 1
  23. readinessProbe:
  24. exec:
  25. command:
  26. - cat
  27. - /tmp/health
Add Comment
Please, Sign In to add comment