mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2025-12-25 18:23:05 +01:00
Small tweak to reduce delta from head Set calico option to be disabled by default Add rescue blocks in case updating existing Refactor items and update comments Refactor and consolidate calico.yml into block Refactor to use template for Calico CRs Revert use_calico to false Template blockSize Align default cidr in template with all.yml sample Apply upstream version tags Revert to current ver tags. Upstream's don't work. Update template address detection Add Tigera Operator/Calico CNI option
15 lines
264 B
YAML
15 lines
264 B
YAML
---
|
|
- name: Deploy calico
|
|
include_tasks: calico.yml
|
|
tags: calico
|
|
when: use_calico == true
|
|
|
|
- name: Deploy metallb pool
|
|
include_tasks: metallb.yml
|
|
tags: metallb
|
|
|
|
- name: Remove tmp directory used for manifests
|
|
file:
|
|
path: /tmp/k3s
|
|
state: absent
|