Skip to content

Commit

Permalink
Fix Get current calico version (#9873)
Browse files Browse the repository at this point in the history
Signed-off-by: hang.jiang <hang.jiang@daocloud.io>
  • Loading branch information
蒋航 authored Mar 10, 2023
1 parent 7747ff2 commit 99115ad
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions roles/network_plugin/calico/tasks/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,20 @@
run_once: True
delegate_to: "{{ groups['kube_control_plane'][0] }}"

- name: Check if calico exists
- name: Check if calicoctl.sh exists
stat:
path: "{{ bin_dir }}/calicoctl.sh"
register: calico_exists
register: calicoctl_sh_exists
run_once: True
delegate_to: "{{ groups['kube_control_plane'][0] }}"

- name: Check if calico ClusterInformation exists
command: "{{ bin_dir }}/calicoctl.sh get ClusterInformation"
register: clusterinformation_exists
run_once: True
delegate_to: "{{ groups['kube_control_plane'][0] }}"
when: calicoctl_sh_exists.stat.exists

- name: Check that current calico version is enough for upgrade
block:
- name: Get current calico version
Expand All @@ -69,7 +76,7 @@
But current version is {{ calico_version_on_server.stdout }}.
run_once: True
delegate_to: "{{ groups['kube_control_plane'][0] }}"
when: calico_exists.stat.exists
when: calicoctl_sh_exists.stat.exists and clusterinformation_exists.rc == 0

- name: "Check that cluster_id is set if calico_rr enabled"
assert:
Expand Down

0 comments on commit 99115ad

Please sign in to comment.