configure_libvirt_storage_pool.yml 963 B

123456789101112131415161718192021222324252627
  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 'error: Storage pool not found:' 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
  21. - name: Refresh the libvirt storage pool for openshift
  22. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  23. when: pool_info_result.rc == 1