github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/init/helm-project/hello-world/templates/hello-world-dep.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 name: {{ .Chart.Name }} 5 labels: 6 app: {{ .Chart.Name }} 7 spec: 8 replicas: 1 9 selector: 10 matchLabels: 11 app: {{ .Chart.Name }} 12 template: 13 metadata: 14 labels: 15 app: {{ .Chart.Name }} 16 spec: 17 containers: 18 - name: {{ .Chart.Name }} 19 image: {{ .Values.image }}