Skip to content
Snippets Groups Projects
Unverified Commit 8331939a authored by Etienne Champetier's avatar Etienne Champetier Committed by GitHub
Browse files

preinstall: check etcd_deployment_type (#7149)

parent 02213d6e
No related branches found
No related tags found
No related merge requests found
...@@ -275,6 +275,13 @@ ...@@ -275,6 +275,13 @@
msg: "The etcd deployment type, 'etcd_deployment_type', must be host or docker" msg: "The etcd deployment type, 'etcd_deployment_type', must be host or docker"
run_once: true run_once: true
- name: Stop if etcd deployment type is not host when container_manager != docker
assert:
that: etcd_deployment_type == 'host'
msg: "The etcd deployment type, 'etcd_deployment_type', must be host when container_manager is not docker"
when: container_manager != 'docker'
run_once: true
- name: Stop if download_localhost is enabled but download_run_once is not - name: Stop if download_localhost is enabled but download_run_once is not
assert: assert:
that: download_run_once that: download_run_once
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment