diff --git a/ansible_version.yml b/ansible_version.yml
index cc2bb4134fdddf5fc9a3ec41b7c5e4241cccc4e7..b7fff003984aa884fda704ba278a594d4b957262 100644
--- a/ansible_version.yml
+++ b/ansible_version.yml
@@ -7,6 +7,7 @@
     minimal_ansible_version_2_10: 2.10.11
     maximal_ansible_version: 2.11.0
     ansible_connection: local
+  tags: always
   tasks:
     - name: "Check {{ minimal_ansible_version }} <= Ansible version < {{ maximal_ansible_version }}"
       assert:
diff --git a/facts.yml b/facts.yml
index fae86eb30b0cd417d0bccc9e1b71e94050edf2f8..d9ce34081e9025407b18d58f0274cfdf1c74889f 100644
--- a/facts.yml
+++ b/facts.yml
@@ -2,6 +2,7 @@
 - name: Gather facts
   hosts: k8s_cluster:etcd:calico_rr
   gather_facts: False
+  tags: always
   tasks:
     - name: Gather minimal facts
       setup:
diff --git a/legacy_groups.yml b/legacy_groups.yml
index 85e6f9ccbfc1f50f67e7d444729e2211f5289d76..0d017106f74869ad4335ae443abecd1ccbe5d4a9 100644
--- a/legacy_groups.yml
+++ b/legacy_groups.yml
@@ -4,6 +4,7 @@
 - name: Add kube-master nodes to kube_control_plane
   hosts: kube-master
   gather_facts: false
+  tags: always
   tasks:
     - name: add nodes to kube_control_plane group
       group_by:
@@ -12,6 +13,7 @@
 - name: Add kube-node nodes to kube_node
   hosts: kube-node
   gather_facts: false
+  tags: always
   tasks:
     - name: add nodes to kube_node group
       group_by:
@@ -20,6 +22,7 @@
 - name: Add k8s-cluster nodes to k8s_cluster
   hosts: k8s-cluster
   gather_facts: false
+  tags: always
   tasks:
     - name: add nodes to k8s_cluster group
       group_by:
@@ -28,6 +31,7 @@
 - name: Add calico-rr nodes to calico_rr
   hosts: calico-rr
   gather_facts: false
+  tags: always
   tasks:
     - name: add nodes to calico_rr group
       group_by:
@@ -36,6 +40,7 @@
 - name: Add no-floating nodes to no_floating
   hosts: no-floating
   gather_facts: false
+  tags: always
   tasks:
     - name: add nodes to no-floating group
       group_by: