*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit adcb4b2f authored by entlein's avatar entlein
Browse files

boolean correct now

parent e767c6a4
No related branches found
No related tags found
1 merge request!1Restore main as the default branch
......@@ -6,18 +6,18 @@
- block:
- include_tasks: setup_host.yml
- include_tasks: install_rke2.yml
when: ( not rke2_installed.stat.exists and state != 'absent' and postinstall == 'False') or (upgrade and state != 'absent' and postinstall == 'False' )
when: ( not rke2_installed.stat.exists and state != 'absent' and not postinstall) or (upgrade and state != 'absent' and not postinstall )
- include_tasks: templates.yml
when: "state != 'absent' and 'master' in group_names and postinstall == 'False' "
when: "state != 'absent' and 'master' in group_names and not postinstall "
- block:
- include_tasks: registries.yml
- include_tasks: config_rke2.yml
when: state != 'absent' and postinstall == 'False'
when: state != 'absent' and not postinstall
- include_tasks: kubeconfig.yml
when: state != 'absent' and 'master' in group_names and postinstall == 'False'
when: state != 'absent' and 'master' in group_names and not postinstall
#This task runs only after the full installer went through and had a bit of time to boot, then starts to enforce SELinux
- include_tasks: fix_selinux.yml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment