controller.yaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. priorityClassName: system-node-critical
  15. containers:
  16. - name: controllers
  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 controllers --config=/etc/origin/master/master-config.yaml --listen=https://0.0.0.0:8444 --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: /etc/containers/registries.d/
  36. name: signature-import
  37. - mountPath: /usr/libexec/kubernetes/kubelet-plugins
  38. name: kubelet-plugins
  39. mountPropagation: "HostToContainer"
  40. livenessProbe:
  41. httpGet:
  42. scheme: HTTPS
  43. port: 8444
  44. path: healthz
  45. # second controllers container would be started here
  46. # scheduler container started here
  47. volumes:
  48. - name: master-config
  49. hostPath:
  50. path: /etc/origin/master/
  51. - name: master-cloud-provider
  52. hostPath:
  53. path: /etc/origin/cloudprovider
  54. - hostPath:
  55. path: /etc/containers/registries.d
  56. name: signature-import
  57. - name: kubelet-plugins
  58. hostPath:
  59. path: /usr/libexec/kubernetes/kubelet-plugins