glusterfs.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. - name: Install GlusterFS storage plugin dependencies
  3. package:
  4. name: glusterfs-fuse
  5. state: present
  6. when: not openshift_is_atomic | bool
  7. register: result
  8. until: result is succeeded
  9. - name: Check for existence of fusefs sebooleans
  10. command: getsebool {{ item }}
  11. register: fusefs_getsebool_status
  12. when:
  13. - ansible_selinux
  14. - ansible_selinux.status == "enabled"
  15. failed_when: false
  16. changed_when: false
  17. with_items:
  18. - virt_use_fusefs
  19. - virt_sandbox_use_fusefs
  20. - name: Set seboolean to allow gluster storage plugin access from containers
  21. seboolean:
  22. name: "{{ item.item }}"
  23. state: yes
  24. persistent: yes
  25. when:
  26. - ansible_selinux
  27. - ansible_selinux.status == "enabled"
  28. - item.rc == 0
  29. # We need to detect whether or not the boolean is an alias, since `seboolean`
  30. # will error if it is an alias. We do this by inspecting stdout for the boolean name,
  31. # since getsebool prints the resolved name. (At some point Ansible's seboolean module
  32. # should learn to deal with aliases)
  33. - item.item in item.stdout # Boolean does not have an alias.
  34. - ansible_python_version is version('3', '<')
  35. with_items: "{{ fusefs_getsebool_status.results }}"
  36. # Workaround for https://github.com/openshift/openshift-ansible/issues/4438
  37. # Use command module rather than seboolean module to set GlusterFS booleans.
  38. # TODO: Remove this task and the ansible_python_version comparison in
  39. # the previous task when the problem has been addressed in current
  40. # ansible release.
  41. - name: Set seboolean to allow gluster storage plugin access from containers (python 3)
  42. command: >
  43. setsebool -P {{ item.item }} on
  44. when:
  45. - ansible_selinux
  46. - ansible_selinux.status == "enabled"
  47. - item.rc == 0
  48. # We need to detect whether or not the boolean is an alias, since `seboolean`
  49. # will error if it is an alias. We do this by inspecting stdout for the boolean name,
  50. # since getsebool prints the resolved name. (At some point Ansible's seboolean module
  51. # should learn to deal with aliases)
  52. - item.item in item.stdout # Boolean does not have an alias.
  53. - ('--> off' in item.stdout) # Boolean is currently off.
  54. - ansible_python_version is version('3', '>=')
  55. with_items: "{{ fusefs_getsebool_status.results }}"