pod-with-readiness-probe.yaml.in 294 B

12345678910111213141516171819
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: nginx
  5. labels:
  6. name: nginx
  7. spec:
  8. containers:
  9. - name: nginx
  10. image: {{.NginxImage}}
  11. ports:
  12. - containerPort: 80
  13. readinessProbe:
  14. httpGet:
  15. path: /
  16. port: 80
  17. initialDelaySeconds: 5
  18. timeoutSeconds: 5