Skip to content

Commit

Permalink
fix: Adjust timings
Browse files Browse the repository at this point in the history
Signed-off-by: Klaus Smolin <[email protected]>
  • Loading branch information
smolin-de committed Dec 10, 2024
1 parent 7eb307f commit 268f888
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions roles/wait_for_cluster_operators/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
register: co_check
# Check for "True" and "False", in case output was empty for any reason
until: (" True " in co_check.stdout) and (" False " not in co_check.stdout)
retries: 10
delay: 30
retries: 20
delay: 15
ignore_errors: true

- name: Check cluster version operators
Expand All @@ -38,8 +38,6 @@
block:
- name: Get final cluster operators
ansible.builtin.shell: |
# Wait 10 sec to complete pending processes or tasks, if exists
sleep 10
oc get co
echo
oc get clusterversion
Expand Down

0 comments on commit 268f888

Please sign in to comment.