Skip to content

Commit

Permalink
adding more retries
Browse files Browse the repository at this point in the history
  • Loading branch information
hgeaydem committed Oct 7, 2021
1 parent ca2837c commit f00990f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tasks/deploy_acm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
state: present
definition: "{{ lookup('file', 'acm-operator.yaml') }}"
register: acm_operator_success
retries: 5
retries: 20
delay: 30
until: acm_operator_success is not failed

Expand All @@ -31,6 +31,6 @@
state: present
definition: "{{ lookup('file', 'acm-multicluster-hub.yaml') }}"
register: hyperconverged_success
retries: 5
retries: 20
delay: 30
until: hyperconverged_success is not failed
4 changes: 2 additions & 2 deletions tasks/deploy_acm_sno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
kubeconfig: /root/sno-rhacm/auth/kubeconfig
definition: "{{ lookup('file', 'acm-operator.yaml') }}"
register: acm_operator_success
retries: 10
retries: 20
delay: 30
until: acm_operator_success is not failed

Expand All @@ -33,6 +33,6 @@
kubeconfig: /root/sno-rhacm/auth/kubeconfig
definition: "{{ lookup('file', 'acm-multicluster-hub.yaml') }}"
register: hyperconverged_success
retries: 10
retries: 20
delay: 30
until: hyperconverged_success is not failed

0 comments on commit f00990f

Please sign in to comment.