etcd.yaml 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. priorityClassName: system-node-critical
  15. containers:
  16. - name: etcd
  17. image: quay.io/coreos/etcd:v3.3
  18. workingDir: /var/lib/etcd
  19. command: ["/bin/sh", "-c"]
  20. args:
  21. - |
  22. #!/bin/sh
  23. set -o allexport
  24. source /etc/etcd/etcd.conf
  25. exec etcd
  26. securityContext:
  27. privileged: true
  28. volumeMounts:
  29. - mountPath: /etc/etcd/
  30. name: master-config
  31. readOnly: true
  32. - mountPath: /var/lib/etcd/
  33. name: master-data
  34. livenessProbe:
  35. exec:
  36. initialDelaySeconds: 45
  37. volumes:
  38. - name: master-config
  39. hostPath:
  40. path: /etc/etcd/
  41. - name: master-data
  42. hostPath:
  43. path: /var/lib/etcd