feat(calico_operator): deploy the operator to configure calico cni

!17 fixes #3
This commit is contained in:
2024-01-29 21:52:28 +09:30
parent 7049c57bd0
commit f48f645468
11 changed files with 25688 additions and 1 deletions

View File

@ -4,16 +4,31 @@
- name: K3s Install
ansible.builtin.include_tasks:
file: k3s/install.yaml
apply:
tags:
- always
when: >
install_kubernetes | default(true) | bool
and
not kubernetes_installed | default(false) | bool
tags:
- never
- install
- operator_calico
- operator_migrate_calico
- name: K3s Configure
ansible.builtin.include_tasks:
file: k3s/configure.yaml
apply:
tags:
- always
when: >
install_kubernetes | default(true) | bool
and
kubernetes_installed | default(false) | bool
tags:
- never
- install
- operator_migrate_calico