Skip to content

Commit 41bb068

Browse files
Configure the pull policy for EE images.
1 parent 4c05137 commit 41bb068

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ spec:
164164
loadbalancer_ip:
165165
description: Assign LoadBalancer IP address
166166
type: string
167-
default: ''
167+
default: missing
168168
loadbalancer_class:
169169
description: Class of LoadBalancer to use
170170
type: string
@@ -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)