123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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.9.0-alpha.4
- 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
- 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
- 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
|