Skip to content

Commit 11379f9

Browse files
Configure the pull policy for EE images.
1 parent 4c05137 commit 11379f9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

config/crd/bases/awx.ansible.com_awxs.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,6 +1350,13 @@ spec:
13501350
type: string
13511351
image:
13521352
type: string
1353+
pull:
1354+
type: string
1355+
default: missing
1356+
enum:
1357+
- always
1358+
- missing
1359+
- never
13531360
control_plane_ee_image:
13541361
description: Registry path to the Execution Environment container image to use on control plane pods
13551362
type: string
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [
22
{% for item in ee_images %}
3-
{'name': '{{ item.name }}' , 'image': '{{ item.image }}'},
3+
{'name': '{{ item.name }}', 'image': '{{ item.image }}', 'pull': '{{ item.pull }}'},
44
{% endfor %}
55
]
66
CONTROL_PLANE_EXECUTION_ENVIRONMENT = "{{ _custom_control_plane_ee_image | default(lookup('env', 'RELATED_IMAGE_CONTROL_PLANE_EE')) | default(_control_plane_ee_image, true) }}"

0 commit comments

Comments
 (0)