summaryrefslogtreecommitdiffstats
path: root/playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_storage_pool.yml
blob: 397158b9e5f9447caf7c6d5d0c3a3a6c354a2be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
- name: Create libvirt storage directory for openshift
  file:
    dest: "{{ libvirt_storage_pool_path }}"
    state: directory

# 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.
- acl:
    default: "{{ item }}"
    entity: kvm
    etype: group
    name: "{{ libvirt_storage_pool_path }}"
    permissions: rwx
    state: present
  with_items:
    - no
    - yes

- name: Test if libvirt storage pool for openshift already exists
  command: "virsh -c {{ libvirt_uri }} pool-info {{ libvirt_storage_pool }}"
  register: pool_info_result
  changed_when: False
  failed_when: "pool_info_result.rc != 0 and 'no storage pool with matching name' not in pool_info_result.stderr"

- name: Create the libvirt storage pool for openshift
  command: 'virsh -c {{ libvirt_uri }} pool-create-as {{ libvirt_storage_pool }} dir --target {{ libvirt_storage_pool_path }}'
  when: pool_info_result.rc == 1