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.

11 lines
376 B

9 years ago
  1. ---
  2. - name: Flannel | Create Flannel manifests
  3. template:
  4. src: "{{ item.file }}.j2"
  5. dest: "{{ kube_config_dir }}/{{ item.file }}"
  6. with_items:
  7. - {name: flannel, file: cni-flannel-rbac.yml, type: sa}
  8. - {name: kube-flannel, file: cni-flannel.yml, type: ds}
  9. register: flannel_node_manifests
  10. when:
  11. - inventory_hostname == groups['kube_control_plane'][0]