1apiVersion: apps/v1 2kind: Deployment 3metadata: 4 name: httpd-deployment 5spec: 6 selector: 7 matchLabels: 8 app: httpd 9 template: 10 metadata: 11 labels: 12 app: httpd 13 spec: 14 containers: 15 - name: httpd 16 image: {{.HttpdNewImage}} 17 ports: 18 - containerPort: 80