* Change to FQCN with ansible-lint fixer Since ansible-base 2.10 (later ansible-core), FQCN is the new way to go. Updated .ansible-lint with a production profile and removed fqcn in skip_list. Updated .yamllint with rules needed. Ran ansible-lint --fix=all, then manually applied some minor changes. * Changed octal value in molecule/ipv6/prepare.yml
21 lines
559 B
YAML
21 lines
559 B
YAML
---
|
|
- name: Deploy calico
|
|
ansible.builtin.include_tasks: calico.yml
|
|
tags: calico
|
|
when: calico_iface is defined and cilium_iface is not defined
|
|
|
|
- name: Deploy cilium
|
|
ansible.builtin.include_tasks: cilium.yml
|
|
tags: cilium
|
|
when: cilium_iface is defined
|
|
|
|
- name: Deploy metallb pool
|
|
ansible.builtin.include_tasks: metallb.yml
|
|
tags: metallb
|
|
when: kube_vip_lb_ip_range is not defined and (not cilium_bgp or cilium_iface is not defined)
|
|
|
|
- name: Remove tmp directory used for manifests
|
|
ansible.builtin.file:
|
|
path: /tmp/k3s
|
|
state: absent
|