configure_libvirt_storage_pool.yml 798 B

1234567891011121314151617181920212223
  1. ---
  2. - name: Create libvirt storage directory for openshift
  3. file:
  4. dest: "{{ libvirt_storage_pool_path }}"
  5. state: directory
  6. - acl:
  7. default: yes
  8. entity: kvm
  9. etype: group
  10. name: "{{ libvirt_storage_pool_path }}"
  11. permissions: rwx
  12. state: present
  13. - name: Test if libvirt storage pool for openshift already exists
  14. command: "virsh -c {{ libvirt_uri }} pool-info {{ libvirt_storage_pool }}"
  15. register: pool_info_result
  16. changed_when: False
  17. failed_when: "pool_info_result.rc != 0 and 'no storage pool with matching name' not in pool_info_result.stderr"
  18. - name: Create the libvirt storage pool for openshift
  19. command: 'virsh -c {{ libvirt_uri }} pool-create-as {{ libvirt_storage_pool }} dir --target {{ libvirt_storage_pool_path }}'
  20. when: pool_info_result.rc == 1