controller.yaml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. spec:
  10. restartPolicy: Always
  11. hostNetwork: true
  12. containers:
  13. - name: controllers
  14. image: openshift/origin:v3.10.0
  15. command: ["/bin/bash", "-c"]
  16. args:
  17. - |
  18. #!/bin/bash
  19. set -euo pipefail
  20. if [[ -f /etc/origin/master/master.env ]]; then
  21. set -o allexport
  22. source /etc/origin/master/master.env
  23. fi
  24. exec openshift start master controllers --config=/etc/origin/master/master-config.yaml --listen=https://0.0.0.0:8444
  25. securityContext:
  26. privileged: true
  27. volumeMounts:
  28. - mountPath: /etc/origin/master/
  29. name: master-config
  30. - mountPath: /etc/origin/cloudprovider/
  31. name: master-cloud-provider
  32. livenessProbe:
  33. httpGet:
  34. scheme: HTTPS
  35. port: 8444
  36. path: healthz
  37. # second controllers container would be started here
  38. # scheduler container started here
  39. volumes:
  40. - name: master-config
  41. hostPath:
  42. path: /etc/origin/master/
  43. - name: master-cloud-provider
  44. hostPath:
  45. path: /etc/origin/cloudprovider