apiserver.yaml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.9.0-alpha.4
  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. volumes:
  40. - name: master-config
  41. hostPath:
  42. path: /etc/origin/master/
  43. - name: master-cloud-provider
  44. hostPath:
  45. path: /etc/origin/cloudprovider
  46. - name: master-data
  47. hostPath:
  48. path: /var/lib/origin