2019-12-21 18:11:30 +01:00
|
|
|
---
|
|
|
|
|
2020-01-11 13:31:23 +01:00
|
|
|
- name: Check if any experimental variables are configure and if they are enabled with k3s_use_experimental
|
2019-12-21 18:11:30 +01:00
|
|
|
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"
|
2020-01-11 20:20:52 +01:00
|
|
|
when: (k3s_non_root is defined and k3s_non_root)
|
|
|
|
or (k3s_dqlite_datastore is defined and k3s_dqlite_datastore)
|
2020-09-17 22:01:20 +02:00
|
|
|
or (k3s_etcd_datastore is defined and k3s_etcd_datastore)
|
2020-03-28 13:58:58 +01:00
|
|
|
or (k3s_secrets_encryption is defined and k3s_secrets_encryption)
|
2020-09-21 20:38:51 +02:00
|
|
|
or (k3s_enable_selinux is defined and k3s_enable_selinux)
|
2020-09-17 22:01:20 +02:00
|
|
|
|
|
|
|
- name: Check if experimental dqlite is being used and k3s_use_unsupported_config is configured
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- k3s_use_unsupported_config is defined and k3s_use_unsupported_config
|
|
|
|
success_msg: "Unsupported use of dqlite backend is enabled."
|
|
|
|
fail_msg: |
|
|
|
|
Embedded DQLite is no longer supported and there is no upgrade path to use Etcd!
|
|
|
|
If you're sure you want to use it set k3s_use_unsupported_config. This will break in v1.19!
|
|
|
|
when: k3s_use_experimental
|
|
|
|
and (k3s_dqlite_datastore is defined and k3s_dqlite_datastore)
|