Skip to content

Commit

Permalink
Check for cloud-init RC 0 during polling (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai authored Dec 14, 2023
1 parent 31d41db commit 6835745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/run-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
retries: 30
delay: 5
register: cloud_init_status
until: (cloud_init_status.stdout | from_json)["status"] == "done"
until: cloud_init_status.rc == 0 and (cloud_init_status.stdout | from_json)["status"] == "done"

- name: Update repositories and install necessary packages
become: yes
Expand Down

0 comments on commit 6835745

Please sign in to comment.