apiserver.yaml 1.5 KB

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