Skip to content
Snippets Groups Projects
Unverified Commit 8bdd0bb8 authored by Etienne Champetier's avatar Etienne Champetier Committed by GitHub
Browse files

Require 2.9.0 <= Ansible version < 2.10.0 (#7130)

We have multiple breakage report with Ansible 2.10+ in https://github.com/kubernetes-sigs/kubespray/issues/6762


README.md already recommended 2.9+

Signed-off-by: default avatarEtienne Champetier <champetier.etienne@gmail.com>
parent a790935d
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ Note: The list of validated [docker versions](https://kubernetes.io/docs/setup/p ...@@ -145,7 +145,7 @@ Note: The list of validated [docker versions](https://kubernetes.io/docs/setup/p
## Requirements ## Requirements
- **Minimum required version of Kubernetes is v1.17** - **Minimum required version of Kubernetes is v1.17**
- **Ansible v2.9+, Jinja 2.11+ and python-netaddr is installed on the machine that will run Ansible commands** - **Ansible v2.9.x, Jinja 2.11+ and python-netaddr is installed on the machine that will run Ansible commands, Ansible 2.10.x is not supported for now**
- The target servers must have **access to the Internet** in order to pull docker images. Otherwise, additional configuration is required (See [Offline Environment](docs/offline-environment.md)) - The target servers must have **access to the Internet** in order to pull docker images. Otherwise, additional configuration is required (See [Offline Environment](docs/offline-environment.md))
- The target servers are configured to allow **IPv4 forwarding**. - The target servers are configured to allow **IPv4 forwarding**.
- The **firewalls are not managed**, you'll need to implement your own rules the way you used to. - The **firewalls are not managed**, you'll need to implement your own rules the way you used to.
......
...@@ -3,13 +3,15 @@ ...@@ -3,13 +3,15 @@
gather_facts: false gather_facts: false
become: no become: no
vars: vars:
minimal_ansible_version: 2.8.0 minimal_ansible_version: 2.9.0
maximal_ansible_version: 2.10.0
ansible_connection: local ansible_connection: local
tasks: tasks:
- name: "Check ansible version >={{ minimal_ansible_version }}" - name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}"
assert: assert:
msg: "Ansible must be {{ minimal_ansible_version }} or higher" msg: "Ansible must be between {{ minimal_ansible_version }} and {{ maximal_ansible_version }}"
that: that:
- ansible_version.string is version(minimal_ansible_version, ">=") - ansible_version.string is version(minimal_ansible_version, ">=")
- ansible_version.string is version(maximal_ansible_version, "<")
tags: tags:
- check - check
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