blob: 549ccae0c442609d5d982a4e1b7030f401e1e8d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
- name: make sure the kubernetes_cri_socket variable is configured correctly
assert:
msg: "The variable kubernetes_cri_socket is not configured correctly. You might need to move your host to the group kubernetes-cluster or standalone-kubelet!"
that:
- kubernetes_cri_socket == "unix:///run/containerd/containerd.sock"
- name: install containerd
include_role:
name: containerd
|