etcd.yaml 903 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. kind: Pod
  2. apiVersion: v1
  3. metadata:
  4. name: master-etcd
  5. namespace: kube-system
  6. labels:
  7. openshift.io/control-plane: "true"
  8. openshift.io/component: etcd
  9. annotations:
  10. scheduler.alpha.kubernetes.io/critical-pod: ''
  11. spec:
  12. restartPolicy: Always
  13. hostNetwork: true
  14. containers:
  15. - name: etcd
  16. image: quay.io/coreos/etcd:v3.3
  17. workingDir: /var/lib/etcd
  18. command: ["/bin/sh", "-c"]
  19. args:
  20. - |
  21. #!/bin/sh
  22. set -o allexport
  23. source /etc/etcd/etcd.conf
  24. exec etcd
  25. securityContext:
  26. privileged: true
  27. volumeMounts:
  28. - mountPath: /etc/etcd/
  29. name: master-config
  30. readOnly: true
  31. - mountPath: /var/lib/etcd/
  32. name: master-data
  33. livenessProbe:
  34. exec:
  35. initialDelaySeconds: 45
  36. volumes:
  37. - name: master-config
  38. hostPath:
  39. path: /etc/etcd/
  40. - name: master-data
  41. hostPath:
  42. path: /var/lib/etcd