Browse Source

gather facts for all nodes, even if running for single one (--limit)

pull/2341/head
Łukasz Piątkowski 6 years ago
parent
commit
f90e509bf6
2 changed files with 12 additions and 0 deletions
  1. 6
      cluster.yml
  2. 6
      upgrade-cluster.yml

6
cluster.yml

@ -21,6 +21,12 @@
vars:
ansible_ssh_pipelining: true
gather_facts: true
pre_tasks:
- name: gather facts from all instances
setup:
delegate_to: "{{item}}"
delegate_facts: True
with_items: "{{ groups['k8s-cluster'] + groups['etcd'] + groups['calico-rr'] }}"
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"

6
upgrade-cluster.yml

@ -21,6 +21,12 @@
vars:
ansible_ssh_pipelining: true
gather_facts: true
pre_tasks:
- name: gather facts from all instances
setup:
delegate_to: "{{item}}"
delegate_facts: True
with_items: "{{ groups['k8s-cluster'] + groups['etcd'] + groups['calico-rr'] }}"
- hosts: k8s-cluster:etcd:calico-rr
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"

Loading…
Cancel
Save