node-configuration.yml 301 B

1234567891011
  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: hostname.yml
  7. - include: container-storage-setup.yml
  8. - include: node-network.yml