Add a container_manager validation (#8785)
This commit is contained in:
parent
fbcf426240
commit
e7e5037a86
1 changed files with 6 additions and 0 deletions
|
@ -217,6 +217,12 @@
|
||||||
when:
|
when:
|
||||||
- inventory_hostname in groups.get('etcd',[])
|
- inventory_hostname in groups.get('etcd',[])
|
||||||
|
|
||||||
|
- name: Stop if container manager is not docker, crio or containerd
|
||||||
|
assert:
|
||||||
|
that: container_manager in ['docker', 'crio', 'containerd']
|
||||||
|
msg: "The container manager, 'container_manager', must be docker, crio or containerd"
|
||||||
|
run_once: true
|
||||||
|
|
||||||
- name: Stop if etcd deployment type is not host or kubeadm when container_manager != docker
|
- name: Stop if etcd deployment type is not host or kubeadm when container_manager != docker
|
||||||
assert:
|
assert:
|
||||||
that: etcd_deployment_type in ['host', 'kubeadm']
|
that: etcd_deployment_type in ['host', 'kubeadm']
|
||||||
|
|
Loading…
Reference in a new issue