controller.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: 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 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. - mountPath: /etc/containers/registries.d/
  35. name: signature-import
  36. livenessProbe:
  37. httpGet:
  38. scheme: HTTPS
  39. port: 8444
  40. path: healthz
  41. # second controllers container would be started here
  42. # scheduler container started here
  43. volumes:
  44. - name: master-config
  45. hostPath:
  46. path: /etc/origin/master/
  47. - name: master-cloud-provider
  48. hostPath:
  49. path: /etc/origin/cloudprovider
  50. - hostPath:
  51. path: /etc/containers/registries.d
  52. name: signature-import