mirror of https://github.com/k3s-io/k3s
33 lines
719 B
YAML
33 lines
719 B
YAML
![]() |
apiVersion: v1beta3
|
||
|
kind: ReplicationController
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: openshift
|
||
|
name: openshift
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
name: openshift
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: openshift
|
||
|
spec:
|
||
|
containers:
|
||
|
- args:
|
||
|
- start
|
||
|
- master
|
||
|
- --config=/config/master-config.yaml
|
||
|
image: "openshift/origin"
|
||
|
name: origin
|
||
|
ports:
|
||
|
- containerPort: 8443
|
||
|
name: openshift
|
||
|
volumeMounts:
|
||
|
- mountPath: /config
|
||
|
name: config
|
||
|
readOnly: true
|
||
|
volumes:
|
||
|
- name: config
|
||
|
secret:
|
||
|
secretName: openshift-config
|