node-configuration.yml 288 B

123456789
  1. ---
  2. - name: "Verify SELinux is enforcing"
  3. fail:
  4. msg: "SELinux is required for OpenShift and has been detected as '{{ ansible_selinux.config_mode }}'"
  5. when: ansible_selinux.config_mode != "enforcing"
  6. - include_tasks: container-storage-setup.yml
  7. - include_tasks: node-network.yml