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