Set imagePullPolicy to Always

Not sure why we werent doing this before.
This commit is contained in:
Shane McDonald
2018-03-08 09:38:48 -05:00
parent 044b85ce7a
commit 2861397433
2 changed files with 4 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ spec:
containers: containers:
- name: awx-web - name: awx-web
image: {{ awx_web_kubernetes_image }} image: {{ awx_web_kubernetes_image }}
imagePullPolicy: Always
ports: ports:
- containerPort: 8052 - containerPort: 8052
volumeMounts: volumeMounts:
@@ -22,6 +23,7 @@ spec:
name: awx-application-config name: awx-application-config
- name: awx-celery - name: awx-celery
image: {{ awx_task_kubernetes_image }} image: {{ awx_task_kubernetes_image }}
imagePullPolicy: Always
volumeMounts: volumeMounts:
- mountPath: /etc/tower - mountPath: /etc/tower
name: awx-application-config name: awx-application-config

View File

@@ -15,6 +15,7 @@ spec:
containers: containers:
- name: awx-web - name: awx-web
image: {{ awx_web_openshift_image }} image: {{ awx_web_openshift_image }}
imagePullPolicy: Always
ports: ports:
- containerPort: 8052 - containerPort: 8052
volumeMounts: volumeMounts:
@@ -22,6 +23,7 @@ spec:
name: awx-application-config name: awx-application-config
- name: awx-celery - name: awx-celery
image: {{ awx_task_openshift_image }} image: {{ awx_task_openshift_image }}
imagePullPolicy: Always
volumeMounts: volumeMounts:
- mountPath: /etc/tower - mountPath: /etc/tower
name: awx-application-config name: awx-application-config