apiserver.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. annotations:
  10. scheduler.alpha.kubernetes.io/critical-pod: ''
  11. spec:
  12. restartPolicy: Always
  13. hostNetwork: true
  14. containers:
  15. - name: api
  16. image: openshift/origin:v3.10.0
  17. command: ["/bin/bash", "-c"]
  18. args:
  19. - |
  20. #!/bin/bash
  21. set -euo pipefail
  22. if [[ -f /etc/origin/master/master.env ]]; then
  23. set -o allexport
  24. source /etc/origin/master/master.env
  25. fi
  26. exec openshift start master api --config=/etc/origin/master/master-config.yaml --loglevel=${DEBUG_LOGLEVEL:-2}
  27. securityContext:
  28. privileged: true
  29. volumeMounts:
  30. - mountPath: /etc/origin/master/
  31. name: master-config
  32. - mountPath: /etc/origin/cloudprovider/
  33. name: master-cloud-provider
  34. - mountPath: /var/lib/origin/
  35. name: master-data
  36. livenessProbe:
  37. httpGet:
  38. scheme: HTTPS
  39. port: 8443
  40. path: healthz
  41. initialDelaySeconds: 45
  42. readinessProbe:
  43. httpGet:
  44. scheme: HTTPS
  45. port: 8443
  46. path: healthz/ready
  47. initialDelaySeconds: 10
  48. volumes:
  49. - name: master-config
  50. hostPath:
  51. path: /etc/origin/master/
  52. - name: master-cloud-provider
  53. hostPath:
  54. path: /etc/origin/cloudprovider
  55. - name: master-data
  56. hostPath:
  57. path: /var/lib/origin