configure_libvirt_storage_pool.yml 838 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. - name: Create libvirt storage directory for openshift
  3. file:
  4. dest: "{{ libvirt_storage_pool_path }}"
  5. state: directory
  6. # We need to set permissions on the directory and any items created under the directory, so we need to call the acl module with and without default set.
  7. - acl:
  8. default: '{{ item.default }}'
  9. entity: kvm
  10. etype: group
  11. name: "{{ libvirt_storage_pool_path }}"
  12. permissions: '{{ item.permissions }}'
  13. state: present
  14. with_items:
  15. - default: no
  16. permissions: x
  17. - default: yes
  18. permissions: rwx
  19. - name: Create the libvirt storage pool for OpenShift
  20. virt_pool:
  21. name: '{{ libvirt_storage_pool }}'
  22. state: '{{ item }}'
  23. autostart: 'yes'
  24. xml: "{{ lookup('template', 'storage-pool.xml') }}"
  25. uri: '{{ libvirt_uri }}'
  26. with_items:
  27. - present
  28. - active