Skip to content

Commit

Permalink
increase networking tasks timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
weakcamel committed Jun 21, 2023
1 parent 0627acd commit 3355986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/control-plane-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
changed_when: "'created' in flannel_result.stdout"
when: kubernetes_pod_network.cni == 'flannel'
until: flannel_result is not failed
retries: 3
retries: 12
delay: 5

- name: Configure Calico networking.
Expand All @@ -60,7 +60,7 @@
changed_when: "'created' in calico_result.stdout"
when: kubernetes_pod_network.cni == 'calico'
until: calico_result is not failed
retries: 3
retries: 12
delay: 5

- name: Get Kubernetes version for Weave installation.
Expand All @@ -69,7 +69,7 @@
register: kubectl_version
when: kubernetes_pod_network.cni == 'weave'
until: kubectl_version is not failed
retries: 3
retries: 12
delay: 5

- name: Configure Weave networking.
Expand Down

0 comments on commit 3355986

Please sign in to comment.