diff --git a/cluster.yml b/cluster.yml index bf93e1bb916985d8280b325d2af5bd41af6ca430..b7476d47d944f1ae754f27d91654a81e5985c8ec 100644 --- a/cluster.yml +++ b/cluster.yml @@ -4,6 +4,7 @@ - hosts: all gather_facts: false + tags: always tasks: - name: "Set up proxy environment" set_fact: @@ -31,6 +32,7 @@ - { role: bootstrap-os, tags: bootstrap-os} - name: Gather facts + tags: always import_playbook: facts.yml - hosts: k8s-cluster:etcd diff --git a/roles/kubespray-defaults/tasks/fallback_ips.yml b/roles/kubespray-defaults/tasks/fallback_ips.yml index 546ac1e2be76f9bba89fb470c78ba71e3671233e..930885a6ad227e4f96b3519299ebb83c9ed2b584 100644 --- a/roles/kubespray-defaults/tasks/fallback_ips.yml +++ b/roles/kubespray-defaults/tasks/fallback_ips.yml @@ -4,6 +4,7 @@ # Thanks https://medium.com/opsops/ansible-default-ipv4-is-not-what-you-think-edb8ab154b10 - name: Gather ansible_default_ipv4 from all hosts + tags: always include_tasks: fallback_ips_gather.yml when: hostvars[delegate_host_to_gather_facts].ansible_default_ipv4 is not defined loop: "{{ groups['all'] }}" diff --git a/roles/kubespray-defaults/tasks/main.yaml b/roles/kubespray-defaults/tasks/main.yaml index b27cafc150290bc2779d960e2a61d38e4e7ecc41..fe268e9533c4b990b252015a23771e713ebf85f1 100644 --- a/roles/kubespray-defaults/tasks/main.yaml +++ b/roles/kubespray-defaults/tasks/main.yaml @@ -7,7 +7,7 @@ # do not run gather facts when bootstrap-os in roles - name: set fallback_ips - include_tasks: fallback_ips.yml + import_tasks: fallback_ips.yml when: - "'bootstrap-os' not in ansible_play_role_names" - fallback_ips is not defined @@ -15,7 +15,7 @@ - always - name: set no_proxy - include_tasks: no_proxy.yml + import_tasks: no_proxy.yml when: - "'bootstrap-os' not in ansible_play_role_names" - http_proxy is defined or https_proxy is defined diff --git a/scale.yml b/scale.yml index b735a74137b9efd1a627d37e4bcbdf45b6183e11..b4f3dd058d8d5ec3d992178eb4205d271b5cee86 100644 --- a/scale.yml +++ b/scale.yml @@ -4,6 +4,7 @@ - hosts: all gather_facts: false + tags: always tasks: - name: "Set up proxy environment" set_fact: @@ -32,6 +33,7 @@ - { role: bootstrap-os, tags: bootstrap-os} - name: Gather facts + tags: always import_playbook: facts.yml - name: Generate the etcd certificates beforehand diff --git a/upgrade-cluster.yml b/upgrade-cluster.yml index d5108f202802d904a7c20c4ce0e8477b4d467d0c..403d210afac906cd658dd715c109ae2d7877b6ae 100644 --- a/upgrade-cluster.yml +++ b/upgrade-cluster.yml @@ -4,6 +4,7 @@ - hosts: all gather_facts: false + tags: always tasks: - name: "Set up proxy environment" set_fact: @@ -35,6 +36,7 @@ - { role: bootstrap-os, tags: bootstrap-os} - name: Gather facts + tags: always import_playbook: facts.yml - name: Download images to ansible host cache via first kube-master node