controller.yaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. kind: Pod
  2. apiVersion: v1
  3. metadata:
  4. name: master-controllers
  5. namespace: kube-system
  6. labels:
  7. openshift.io/control-plane: "true"
  8. openshift.io/component: controllers
  9. annotations:
  10. scheduler.alpha.kubernetes.io/critical-pod: ''
  11. spec:
  12. restartPolicy: Always
  13. hostNetwork: true
  14. containers:
  15. - name: controllers
  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 controllers --config=/etc/origin/master/master-config.yaml --listen=https://0.0.0.0:8444 --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. livenessProbe:
  35. httpGet:
  36. scheme: HTTPS
  37. port: 8444
  38. path: healthz
  39. # second controllers container would be started here
  40. # scheduler container started here
  41. volumes:
  42. - name: master-config
  43. hostPath:
  44. path: /etc/origin/master/
  45. - name: master-cloud-provider
  46. hostPath:
  47. path: /etc/origin/cloudprovider