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

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

until statement in wait condition was incorrect

parent 100711cd
Branches
No related tags found
1 merge request!1Restore main as the default branch
...@@ -35,9 +35,9 @@ ...@@ -35,9 +35,9 @@
- name: Wait for openstack-cloud-controller deamon set to be ready - name: Wait for openstack-cloud-controller deamon set to be ready
shell: "/var/lib/rancher/rke2/bin/kubectl --kubeconfig /etc/rancher/rke2/rke2.yaml wait --namespace=kube-system --for=condition=Ready pods --selector app=openstack-cloud-controller-manager --timeout=360s" shell: "/var/lib/rancher/rke2/bin/kubectl --kubeconfig /etc/rancher/rke2/rke2.yaml wait --namespace=kube-system --for=condition=Ready pods --selector app=openstack-cloud-controller-manager --timeout=360s"
register: openstack_ccm_ready register: openstack_ccm_ready
until: openstack_ccm_ready.stdout #until: openstack_ccm_ready.stdout
retries: 2 #retries: 2
delay: 30 #delay: 30
ignore_errors: True ignore_errors: True
- name: Enable SELinux - name: Enable SELinux
......
...@@ -75,7 +75,8 @@ ...@@ -75,7 +75,8 @@
- name: Disable SELinux - name: Disable SELinux
selinux: selinux:
state: disabled policy: targeted
state: permissive
when: ( 'control-plane' in group_names ) when: ( 'control-plane' in group_names )
- name: Copy SELinux Policies - name: Copy SELinux Policies
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment