k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
447 B
14 lines
447 B
---
|
|
- 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
|