Browse Source

Speed up tasks (#4278)

* fact gathering should run only once per node
* eliminate ansible version check, it is at the beginning of each
  playbook
pull/4305/head
Gabor Lekeny 5 years ago
committed by Kubernetes Prow Robot
parent
commit
b4aaa7b908
2 changed files with 3 additions and 8 deletions
  1. 5
      cluster.yml
  2. 6
      roles/kubernetes/preinstall/tasks/0020-verify-settings.yml

5
cluster.yml

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

6
roles/kubernetes/preinstall/tasks/0020-verify-settings.yml

@ -1,10 +1,4 @@
---
- name: Stop if ansible version is too low
assert:
that:
- ansible_version.full is version('2.3.0', '>=')
run_once: yes
- name: Stop if either kube-master, kube-node or etcd is empty
assert:
that: groups.get('{{ item }}')

Loading…
Cancel
Save