feat: pre-pull ovn-controller image
Closes-Bug: ATMOSPHERE-634
Depends-On: I0b15142aabab38fafab829a16cee0297b749e6e8
Change-Id: I2661648efde71b38be3c2ed32ef3375e8c7dae51
(cherry picked from commit bc6a06bfbb4133f6e8295ad5953bd2fe8c3d86d6)
diff --git a/roles/ovn/tasks/main.yml b/roles/ovn/tasks/main.yml
index b3d8f76..69430e8 100644
--- a/roles/ovn/tasks/main.yml
+++ b/roles/ovn/tasks/main.yml
@@ -38,6 +38,21 @@
- _ovn_controller_ds_info.resources | length > 0
- "'type' in _ovn_controller_ds_info.resources[0].spec.selector.matchLabels"
+- name: Cache ovn-controller image before install or upgrade
+ block:
+ - name: Pull ovn-controller image
+ ansible.builtin.command: crictl pull {{ atmosphere_images['ovn_controller'] }}
+ register: pull_result
+ changed_when: false
+
+ - name: Verify ovn-controller image pull
+ ansible.builtin.assert:
+ that:
+ - pull_result.rc == 0
+ - "'Image is up to date' in pull_result.stdout or 'Image pulled' in pull_result.stdout"
+ fail_msg: "Failed to pull ovn-controller image"
+ success_msg: "Successfully pulled ovn-controller image"
+
- name: Deploy Helm chart
run_once: true
when: atmosphere_network_backend == 'ovn'