mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-11 10:00:03 -03:30
Give users two options: besides skip Cilium, add `cilium_remove_old_resources`, default is `false`, when set to `true`, it will remove the content of the old version, but it will cause the downtime, need to be careful to use. Signed-off-by: ChengHao Yang <17496418+tico88612@users.noreply.github.com>
15 lines
297 B
YAML
15 lines
297 B
YAML
---
|
|
- name: Cilium check
|
|
import_tasks: check.yml
|
|
|
|
- name: Cilium install
|
|
include_tasks: install.yml
|
|
|
|
# Remove after 2.29 released
|
|
- name: Cilium remove old resources
|
|
when: cilium_remove_old_resources
|
|
include_tasks: remove_old_resources.yml
|
|
|
|
- name: Cilium apply
|
|
include_tasks: apply.yml
|