mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-14 17:30:18 +01:00
c447fcec39
- Added option to skip validation checks #47 - Add SELinux support in containerd #48 - Added check for Etcd member count #46 - Moved token to a file #50 - Added Etcd snapshot configuration options #49
24 lines
1.2 KiB
YAML
24 lines
1.2 KiB
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_etcd_datastore is defined and k3s_etcd_datastore)
|
|
or (k3s_secrets_encryption is defined and k3s_secrets_encryption)
|
|
or (k3s_enable_selinux is defined and k3s_enable_selinux)
|
|
|
|
- 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)
|