apiserver.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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: docker.io/openshift/origin:v3.11.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. timeoutSeconds: 10
  43. readinessProbe:
  44. httpGet:
  45. scheme: HTTPS
  46. port: 8443
  47. path: healthz/ready
  48. initialDelaySeconds: 10
  49. timeoutSeconds: 10
  50. volumes:
  51. - name: master-config
  52. hostPath:
  53. path: /etc/origin/master/
  54. - name: master-cloud-provider
  55. hostPath:
  56. path: /etc/origin/cloudprovider
  57. - name: master-data
  58. hostPath:
  59. path: /var/lib/origin