Skip to content
Snippets Groups Projects
Unverified Commit 6e2b8a57 authored by Florian Ruynat's avatar Florian Ruynat Committed by GitHub
Browse files

Add timeout to Get current version of calico cluster version, again (#6493)

parent ca66a96d
No related branches found
No related tags found
No related merge requests found
...@@ -163,6 +163,8 @@ ...@@ -163,6 +163,8 @@
args: args:
executable: /bin/bash executable: /bin/bash
register: calico_version_on_server register: calico_version_on_server
async: 10
poll: 3
run_once: yes run_once: yes
changed_when: false changed_when: false
failed_when: false failed_when: false
......
...@@ -40,6 +40,8 @@ ...@@ -40,6 +40,8 @@
- name: "Get current version of calico cluster version" # noqa 306 - name: "Get current version of calico cluster version" # noqa 306
shell: "{{ bin_dir }}/calicoctl.sh version | grep 'Cluster Version:' | awk '{ print $3}'" shell: "{{ bin_dir }}/calicoctl.sh version | grep 'Cluster Version:' | awk '{ print $3}'"
register: calico_version_on_server register: calico_version_on_server
async: 10
poll: 3
run_once: yes run_once: yes
changed_when: false changed_when: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment