dc6a17e092
import_tasks will consume far less memory, so it should be used whenever it is compatible.
14 lines
447 B
YAML
14 lines
447 B
YAML
---
|
|
- import_tasks: pre-upgrade.yml
|
|
|
|
- name: Flannel | Create Flannel manifests
|
|
template:
|
|
src: "{{item.file}}.j2"
|
|
dest: "{{kube_config_dir}}/{{item.file}}"
|
|
with_items:
|
|
- {name: flannel, file: cni-flannel-rbac.yml, type: sa}
|
|
- {name: kube-flannel, file: cni-flannel.yml, type: ds}
|
|
register: flannel_node_manifests
|
|
when:
|
|
- inventory_hostname in groups['kube-master']
|
|
- rbac_enabled or item.type not in rbac_resources
|