Skip to content
Snippets Groups Projects
Unverified Commit 6f791126 authored by Cristian Calin's avatar Cristian Calin Committed by GitHub
Browse files

Calico: make calico_min_version check relevant (#7939)

* Calico: make calico_min_version check relevant

* Calico: only check currently installed version against the oldest supported version by the previous release
parent ae44aff3
No related branches found
No related tags found
No related merge requests found
......@@ -199,14 +199,6 @@
- cloud-provider
- facts
- name: Ensure minimum calico version
assert:
that: calico_version is version(calico_min_version_required, '>=')
msg: "calico_version is too low. Minimum version {{ calico_min_version_required }}"
run_once: yes
when:
- kube_network_plugin == 'calico'
- name: Get current calico cluster version
shell: "set -o pipefail && {{ bin_dir }}/calicoctl.sh version | grep 'Cluster Version:' | awk '{ print $3}'"
args:
......@@ -223,8 +215,10 @@
- name: Check that current calico version is enough for upgrade
assert:
that:
- calico_version_on_server.stdout is version( 'v3.0.0', '>=')
msg: "Your version of calico is not fresh enough for upgrade. Minimum version is v3.0.0"
- calico_version_on_server.stdout is version(calico_min_version_required, '>=')
msg: >
Your version of calico is not fresh enough for upgrade.
Minimum version is {{ calico_min_version_required }} supported by the previous kubespray release.
when:
- kube_network_plugin == 'calico'
- 'calico_version_on_server.stdout is defined'
......
......@@ -4,6 +4,6 @@
kube_proxy_deployed: "{{ 'addon/kube-proxy' not in kubeadm_init_phases_skip }}"
# The lowest version allowed to upgrade from (same as calico_version in the previous branch)
calico_min_version_required: "v3.15.2"
calico_min_version_required: "v3.17.5"
containerd_min_version_required: "1.3.7"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment