mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-11-05 09:17:36 +01:00
12 lines
581 B
YAML
12 lines
581 B
YAML
---
|
|
|
|
- name: Check if any experimental variables are configure and if they are enabled with k3s_use_experimental
|
|
assert:
|
|
that:
|
|
- k3s_use_experimental is defined and k3s_use_experimental
|
|
success_msg: "Experimental variables are defined and enabled."
|
|
fail_msg: "Experimental variables have been configured. If you want to use them ensure you set k3s_use_experimental"
|
|
when: (k3s_non_root is defined and k3s_non_root)
|
|
or (k3s_dqlite_datastore is defined and k3s_dqlite_datastore)
|
|
or (k3s_secrets_encryption is defined and k3s_secrets_encryption)
|