node-configuration.yml 595 B

12345678910111213141516
  1. ---
  2. # NOTE(shadower): we need to do this because some of the install tasks seem to
  3. # ignore openshift_hostname and rely on the actual system's hostname
  4. - name: Update hostname to match the OpenStack name
  5. hostname:
  6. name: "{{ inventory_hostname }}"
  7. when: openshift_openstack_set_hostname_to_compute_name
  8. - name: "Verify SELinux is enforcing"
  9. fail:
  10. msg: "SELinux is required for OpenShift and has been detected as '{{ ansible_selinux.config_mode }}'"
  11. when: ansible_selinux.config_mode != "enforcing"
  12. - include_tasks: container-storage-setup.yml
  13. - include_tasks: node-network.yml