1apiVersion: v1 2kind: ReplicationController 3metadata: 4 name: httpd-rc 5spec: 6 replicas: 1 7 selector: 8 run: httpd-rc 9 template: 10 metadata: 11 labels: 12 run: httpd-rc 13 spec: 14 containers: 15 - image: {{.HttpdNewImage}} 16 name: httpd-rc
View as plain text