12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- kind: Pod
- apiVersion: v1
- metadata:
- name: master-api
- namespace: kube-system
- labels:
- openshift.io/control-plane: "true"
- openshift.io/component: api
- spec:
- restartPolicy: Always
- hostNetwork: true
- containers:
- - name: api
- image: openshift/origin:v3.10.0
- command: ["/bin/bash", "-c"]
- args:
- - |
- #!/bin/bash
- set -euo pipefail
- if [[ -f /etc/origin/master/master.env ]]; then
- set -o allexport
- source /etc/origin/master/master.env
- fi
- exec openshift start master api --config=/etc/origin/master/master-config.yaml --loglevel=${DEBUG_LOGLEVEL:-2}
- securityContext:
- privileged: true
- volumeMounts:
- - mountPath: /etc/origin/master/
- name: master-config
- - mountPath: /etc/origin/cloudprovider/
- name: master-cloud-provider
- - mountPath: /var/lib/origin/
- name: master-data
- livenessProbe:
- httpGet:
- scheme: HTTPS
- port: 8443
- path: healthz
- initialDelaySeconds: 45
- readinessProbe:
- httpGet:
- scheme: HTTPS
- port: 8443
- path: healthz/ready
- initialDelaySeconds: 10
- volumes:
- - name: master-config
- hostPath:
- path: /etc/origin/master/
- - name: master-cloud-provider
- hostPath:
- path: /etc/origin/cloudprovider
- - name: master-data
- hostPath:
- path: /var/lib/origin
|