Skip to content
Open
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
10 changes: 10 additions & 0 deletions roles/edpm_prepare/tasks/kustomize_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,16 @@
if (cifmw_update_containers_watcher | default(false) | bool) else []
)
}}
register: _cifmw_set_containers_result

- name: Read back generated OpenStackVersion CR
ansible.builtin.slurp:
src: "{{ _cifmw_set_containers_result.dest_path }}"
register: _cifmw_set_containers_cr
Comment thread
rebtoor marked this conversation as resolved.

- name: Display generated OpenStackVersion CR (container images to patch)
ansible.builtin.debug:
msg: "{{ (_cifmw_set_containers_cr.content | b64decode | trim).splitlines() }}"

- name: Apply the OpenStackControlPlane CR
environment:
Expand Down
9 changes: 9 additions & 0 deletions roles/update_containers/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
dest: "{{ cifmw_update_containers_dest_path }}"
mode: "0644"

- name: Read back generated OpenStackVersion CR
ansible.builtin.slurp:
src: "{{ cifmw_update_containers_dest_path }}"
Comment thread
danpawlik marked this conversation as resolved.
register: cifmw_update_containers_cr

- name: Display generated OpenStackVersion CR (container images to patch)
ansible.builtin.debug:
msg: "{{ (cifmw_update_containers_cr.content | b64decode | trim).splitlines() }}"

- name: Update the containers
when: cifmw_update_containers | bool
environment:
Expand Down
Loading