diff --git a/README.md b/README.md
index e20b3bc1454549ac36c8c5bfd15e6dbe770f4f4e..1d674d6d74ad350ad52ea6227ccf4578315c0410 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,12 @@ To deploy the cluster you can use :
 
 ### Ansible
 
+#### Ansible version
+
+Ansible v2.7.0 is failing and/or produce unexpected results due to [ansible/ansible/issues/46600](https://github.com/ansible/ansible/issues/46600)
+
+#### Usage
+
     # Install dependencies from ``requirements.txt``
     sudo pip install -r requirements.txt
 
diff --git a/cluster.yml b/cluster.yml
index 5b748da594a88a1c13153722a8ed8ebf5ff19284..3b6297c5a5fcfa91790b6c062a3df557a7b66da1 100644
--- a/cluster.yml
+++ b/cluster.yml
@@ -1,4 +1,17 @@
 ---
+- hosts: localhost
+  tasks:
+    - name: Check ansible version <2.7
+      assert:
+        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        that:
+          - ansible_version.string is version("2.7.0", "<")
+          - ansible_version.string is version("2.5.0", ">=")
+      tags:
+        - check
+  vars:
+    ansible_connection: local
+
 - hosts: bastion[0]
   gather_facts: False
   roles:
diff --git a/remove-node.yml b/remove-node.yml
index 0fae1a99425d97405abf9e38565f172cca2b4f90..aceed33acbd6c6d93479051e2b234ac238b8f6ed 100644
--- a/remove-node.yml
+++ b/remove-node.yml
@@ -1,4 +1,16 @@
 ---
+- hosts: localhost
+  tasks:
+    - name: Check ansible version <2.7
+      assert:
+        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        that:
+          - ansible_version.string is version("2.7.0", "<")
+          - ansible_version.string is version("2.5.0", ">=")
+      tags:
+        - check
+  vars:
+    ansible_connection: local
 
 - hosts: all
   vars:
diff --git a/requirements.txt b/requirements.txt
index 59034dff53fe4d1fa03fbd87f6b963ca69857768..fed7afe505266c458b94d1aa54f4af0774c78dc7 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,4 @@
-ansible>=2.5.0
+ansible>=2.5.0,<2.7
 jinja2>=2.9.6
 netaddr
 pbr>=1.6
diff --git a/reset.yml b/reset.yml
index 959487b8a26d291007b3e063dff5030c421048a5..de47fafcab5c89c755ba0929542a314d27cd3dac 100644
--- a/reset.yml
+++ b/reset.yml
@@ -1,4 +1,16 @@
 ---
+- hosts: localhost
+  tasks:
+    - name: Check ansible version <2.7
+      assert:
+        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        that:
+          - ansible_version.string is version("2.7.0", "<")
+          - ansible_version.string is version("2.5.0", ">=")
+      tags:
+        - check
+  vars:
+    ansible_connection: local
 
 - hosts: all
   gather_facts: true
diff --git a/scale.yml b/scale.yml
index 81ddef8211ce43167dec597261d69844c747a26f..1be060ce384662ba21e26313b72d83ffb80ece60 100644
--- a/scale.yml
+++ b/scale.yml
@@ -1,4 +1,17 @@
 ---
+- hosts: localhost
+  tasks:
+    - name: Check ansible version <2.7
+      assert:
+        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        that:
+          - ansible_version.string is version("2.7.0", "<")
+          - ansible_version.string is version("2.5.0", ">=")
+      tags:
+        - check
+  vars:
+    ansible_connection: local
+
 - hosts: bastion[0]
   gather_facts: False
   roles:
diff --git a/upgrade-cluster.yml b/upgrade-cluster.yml
index 69e312794ba3dd1882292bf28f2c393b60b315b3..8397341f4e8bf061562a8e6a4c276e0d2393b0c1 100644
--- a/upgrade-cluster.yml
+++ b/upgrade-cluster.yml
@@ -1,4 +1,17 @@
 ---
+- hosts: localhost
+  tasks:
+    - name: Check ansible version <2.7
+      assert:
+        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        that:
+          - ansible_version.string is version("2.7.0", "<")
+          - ansible_version.string is version("2.5.0", ">=")
+      tags:
+        - check
+  vars:
+    ansible_connection: local
+
 - hosts: bastion[0]
   gather_facts: False
   roles: