Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions roles/edpm_prepare/tasks/kustomize_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
(cifmw_update_containers_ansibleee_image_url is defined) or
(cifmw_update_containers_openstack is defined and
cifmw_update_containers_openstack | bool) or
(cifmw_update_containers_custom_images is defined and
cifmw_update_containers_custom_images is mapping) or
(cifmw_update_containers_watcher is defined and
cifmw_update_containers_watcher | bool))
vars:
Expand Down
5 changes: 5 additions & 0 deletions roles/update_containers/templates/update_containers.j2
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,8 @@ spec:
watcherApplierImage: {{ cifmw_update_containers_registry }}/{{ cifmw_update_containers_org }}/{{ cifmw_update_containers_name_prefix }}-watcher-applier:{{ cifmw_update_containers_tag }}
watcherDecisionEngineImage: {{ cifmw_update_containers_registry }}/{{ cifmw_update_containers_org }}/{{ cifmw_update_containers_name_prefix }}-watcher-decision-engine:{{ cifmw_update_containers_tag }}
{% endif %}
{% if cifmw_update_containers_custom_images is defined and cifmw_update_containers_custom_images is mapping %}
{% for image_name, image_uri in cifmw_update_containers_custom_images.items() %}
{{ image_name }}: {{ image_uri }}
{% endfor %}
{% endif %}
Loading