From 648d275ec2c194c0910eab6c8acaae97f663d4e2 Mon Sep 17 00:00:00 2001 From: albihasani94 Date: Mon, 30 Sep 2019 12:17:05 +0200 Subject: [PATCH] Update the imagePullPolicy to the correct value in configuration - values.yaml has declared the pullPolicy property - this value should be referred from the deployment as pullPolicy rather than imagePullPolicy --- manifests/myapp/templates/greeting-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/myapp/templates/greeting-deployment.yaml b/manifests/myapp/templates/greeting-deployment.yaml index f306876..0db5bbd 100644 --- a/manifests/myapp/templates/greeting-deployment.yaml +++ b/manifests/myapp/templates/greeting-deployment.yaml @@ -15,7 +15,7 @@ spec: containers: - name: greeting image: {{ .Values.greeting.image }}:{{ .Values.image.tag }} - imagePullPolicy: {{ .Values.image.imagePullPolicy }} + imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - containerPort: {{ .Values.service.internalPort }} name: "http"