Pārlūkot izejas kodu

Merge pull request #12109 from mtnbikenc/retry_podman_pull

Retry podman pull
OpenShift Merge Robot 5 gadi atpakaļ
vecāks
revīzija
66e91170f2

+ 3 - 3
roles/openshift_node/tasks/apply_machine_config.yml

@@ -12,7 +12,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5
@@ -29,7 +28,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5
@@ -48,7 +46,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5
@@ -62,6 +59,9 @@
 - block:
   - name: Pull MCD image
     command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile /var/lib/kubelet/config.json {{ l_mcd_image }}"
+    register: podman_pull
+    until:
+      podman_pull.stdout != ''
 
   - name: Apply machine config
     command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"

+ 6 - 1
roles/openshift_node/tasks/config.yml

@@ -112,7 +112,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
   retries: 36
   delay: 5
@@ -126,6 +125,9 @@
 - block:
   - name: Pull release image
     command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ l_release_image }}"
+    register: podman_pull
+    until:
+      podman_pull.stdout != ''
 
   - name: Get machine controller daemon image from release image
     command: "podman run --rm {{ l_release_image }} image machine-config-operator"
@@ -138,6 +140,9 @@
 - block:
   - name: Pull MCD image
     command: "podman pull --tls-verify={{ openshift_node_tls_verify }} --authfile {{ temp_dir.path }}/pull-secret.json {{ release_image_mcd.stdout }}"
+    register: podman_pull
+    until:
+      podman_pull.stdout != ''
 
   - name: Apply ignition manifest
     command: "podman run {{ podman_mounts }} {{ podman_flags }} {{ mcd_command }}"

+ 0 - 2
roles/openshift_node/tasks/install.yml

@@ -17,7 +17,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
 
 - name: Set fact l_cluster_version
@@ -37,7 +36,6 @@
   delegate_to: localhost
   register: oc_get
   until:
-  - oc_get.stdout is defined
   - oc_get.stdout != ''
 
 - name: Set fact l_kubernetes_version