glusterfs.yml 2.2 KB

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