Skip to content
Snippets Groups Projects
Unverified Commit e7e5037a authored by Victor Morales's avatar Victor Morales Committed by GitHub
Browse files

Add a container_manager validation (#8785)

parent fbcf4262
No related branches found
No related tags found
No related merge requests found
...@@ -217,6 +217,12 @@ ...@@ -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']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment