apiserver.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. kind: Pod
  2. apiVersion: v1
  3. metadata:
  4. name: master-api
  5. namespace: kube-system
  6. labels:
  7. openshift.io/control-plane: "true"
  8. openshift.io/component: api
  9. spec:
  10. restartPolicy: Always
  11. hostNetwork: true
  12. containers:
  13. - name: api
  14. image: openshift/origin:v3.10.0
  15. command: ["/bin/bash", "-c"]
  16. args:
  17. - |
  18. #!/bin/bash
  19. set -euo pipefail
  20. if [[ -f /etc/origin/master/master.env ]]; then
  21. set -o allexport
  22. source /etc/origin/master/master.env
  23. fi
  24. exec openshift start master api --config=/etc/origin/master/master-config.yaml
  25. securityContext:
  26. privileged: true
  27. volumeMounts:
  28. - mountPath: /etc/origin/master/
  29. name: master-config
  30. - mountPath: /etc/origin/cloudprovider/
  31. name: master-cloud-provider
  32. - mountPath: /var/lib/origin/
  33. name: master-data
  34. livenessProbe:
  35. httpGet:
  36. scheme: HTTPS
  37. port: 8443
  38. path: healthz
  39. initialDelaySeconds: 45
  40. readinessProbe:
  41. httpGet:
  42. scheme: HTTPS
  43. port: 8443
  44. path: healthz/ready
  45. initialDelaySeconds: 10
  46. volumes:
  47. - name: master-config
  48. hostPath:
  49. path: /etc/origin/master/
  50. - name: master-cloud-provider
  51. hostPath:
  52. path: /etc/origin/cloudprovider
  53. - name: master-data
  54. hostPath:
  55. path: /var/lib/origin