From 2861397433438c309adc99ef465662ee800f4d89 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Thu, 8 Mar 2018 09:38:48 -0500 Subject: [PATCH] Set imagePullPolicy to Always Not sure why we werent doing this before. --- installer/kubernetes/templates/deployment.yml.j2 | 2 ++ installer/openshift/templates/deployment.yml.j2 | 2 ++ 2 files changed, 4 insertions(+) diff --git a/installer/kubernetes/templates/deployment.yml.j2 b/installer/kubernetes/templates/deployment.yml.j2 index d6f0beb19d..00db600273 100644 --- a/installer/kubernetes/templates/deployment.yml.j2 +++ b/installer/kubernetes/templates/deployment.yml.j2 @@ -15,6 +15,7 @@ spec: containers: - name: awx-web image: {{ awx_web_kubernetes_image }} + imagePullPolicy: Always ports: - containerPort: 8052 volumeMounts: @@ -22,6 +23,7 @@ spec: name: awx-application-config - name: awx-celery image: {{ awx_task_kubernetes_image }} + imagePullPolicy: Always volumeMounts: - mountPath: /etc/tower name: awx-application-config diff --git a/installer/openshift/templates/deployment.yml.j2 b/installer/openshift/templates/deployment.yml.j2 index 130a3951e2..93a9c6cb8c 100644 --- a/installer/openshift/templates/deployment.yml.j2 +++ b/installer/openshift/templates/deployment.yml.j2 @@ -15,6 +15,7 @@ spec: containers: - name: awx-web image: {{ awx_web_openshift_image }} + imagePullPolicy: Always ports: - containerPort: 8052 volumeMounts: @@ -22,6 +23,7 @@ spec: name: awx-application-config - name: awx-celery image: {{ awx_task_openshift_image }} + imagePullPolicy: Always volumeMounts: - mountPath: /etc/tower name: awx-application-config