Skip to content

Commit

Permalink
Increase delay between retries for kcp name
Browse files Browse the repository at this point in the history
Signed-off-by: michal.gubricky <michal.gubricky@dnation.cloud>
  • Loading branch information
michal-gubricky committed Jul 9, 2024
1 parent 46d72c1 commit 4f00acd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion playbooks/openstack/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,13 @@
- name: Apply cluster template
ansible.builtin.command: "kubectl apply -f {{ ansible_user_dir }}/cluster.yaml"
changed_when: true
- name: Debug puase
ansible.builtin.pause:
seconds: 240
- name: Get kubeadmcontrolplane name
ansible.builtin.command: "kubectl get kubeadmcontrolplane -o=jsonpath='{.items[0].metadata.name}'"
retries: 6
delay: 10
delay: 20
until: kcp_name.rc == 0
register: kcp_name
changed_when: true
Expand Down

0 comments on commit 4f00acd

Please sign in to comment.