mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
18 lines
429 B
YAML
18 lines
429 B
YAML
---
|
|
# install crictl
|
|
- include_tasks: install_crictl.yaml
|
|
|
|
# install docker
|
|
- include_tasks: install_docker.yaml
|
|
when: .cri.container_manager | eq "docker"
|
|
|
|
# install containerd
|
|
- include_tasks: install_containerd.yaml
|
|
when: .cri.container_manager | eq "containerd"
|
|
|
|
# install cridockerd
|
|
- include_tasks: install_cridockerd.yaml
|
|
when:
|
|
- .cri.container_manager | eq "docker"
|
|
- .kube_version | semverCompare ">=v1.24.0"
|