当前位置:  首页>> 技术小册>> Kubernets合辑5-Pod控制器

  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: pod-01
  5. namespace: app
  6. labels:
  7. app: centos7
  8. release: stable
  9. version: t1
  10. spec:
  11. containers:
  12. - name: centos
  13. image: harbor.od.com/public/centos:7
  14. command:
  15. - /bin/bash
  16. - -c
  17. - "echo 'abc' > /tmp/health;sleep 60;rm -f /tmp/health;sleep 600"
  18. livenessProbe:
  19. exec:
  20. command:
  21. - /bin/bash
  22. - -c
  23. - "[ -f /tmp/health ]"

该分类下的相关小册推荐: