1apiVersion: v1 2kind: Pod 3metadata: 4 name: httpd 5 labels: 6 name: httpd 7spec: 8 containers: 9 - name: httpd 10 image: {{.HttpdImage}} 11 ports: 12 - containerPort: 80 13 readinessProbe: 14 httpGet: 15 path: / 16 port: 80 17 initialDelaySeconds: 5 18 timeoutSeconds: 5