17 lines
267 B
YAML
17 lines
267 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: httpd-rc
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
run: httpd-rc
|
|
template:
|
|
metadata:
|
|
labels:
|
|
run: httpd-rc
|
|
spec:
|
|
containers:
|
|
- image: {{.HttpdNewImage}}
|
|
name: httpd-rc
|