Skip to content

Commit

Permalink
Update core/src/epicli/data/common/ansible/playbooks/roles/upgrade/ta…
Browse files Browse the repository at this point in the history
…sks/kubernetes.yml

Co-authored-by: to-bar <46519524+to-bar@users.noreply.github.com>
  • Loading branch information
rafzei and to-bar committed Jul 22, 2020
1 parent eb1d9a6 commit ac45056
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import_tasks: kubernetes/get-cluster-version.yml # sets cluster_version
delegate_to: "{{ groups['kubernetes_master'][0] }}"

- name: Check if upgrade from current version is supported
- name: Check if upgrade from current K8s version is supported
assert:
that: cluster_version is version('v1.14.6','>=')
fail_msg: Upgrade from versions under v1.14.6 (Epiphany 0.4.4) are not supported. For additional informations refer to the documentation.
that: cluster_version is version('v1.14.6', '>=')
fail_msg: Your Kubernetes version ({{ cluster_version }}) is not supported by this version of Epiphany which requires at least version 1.14.6 (Epiphany v0.4.4). For more information, refer to the documentation.
quiet: true

- name: Include get-kubelet-version.yml
Expand Down

0 comments on commit ac45056

Please sign in to comment.