prepare-and-format-cinder-volume.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. - hosts: localhost
  3. gather_facts: False
  4. become: False
  5. tasks:
  6. - set_fact:
  7. cinder_volume: "{{ hostvars[groups.masters[0]].openshift_hosted_registry_storage_openstack_volumeID }}"
  8. cinder_fs: "{{ hostvars[groups.masters[0]].openshift_hosted_registry_storage_openstack_filesystem }}"
  9. - name: Attach the volume to the VM
  10. os_server_volume:
  11. state: present
  12. server: "{{ groups['masters'][0] }}"
  13. volume: "{{ cinder_volume }}"
  14. register: volume_attachment
  15. - set_fact:
  16. attached_device: >-
  17. {{ volume_attachment['attachments']|json_query("[?volume_id=='" + cinder_volume + "'].device | [0]") }}
  18. - delegate_to: "{{ groups['masters'][0] }}"
  19. block:
  20. - name: Wait for the device to appear
  21. wait_for: path={{ attached_device }}
  22. - name: Create a temp directory for mounting the volume
  23. tempfile:
  24. prefix: cinder-volume
  25. state: directory
  26. register: cinder_mount_dir
  27. - name: Format the device
  28. filesystem:
  29. fstype: "{{ cinder_fs }}"
  30. dev: "{{ attached_device }}"
  31. - name: Mount the device
  32. mount:
  33. name: "{{ cinder_mount_dir.path }}"
  34. src: "{{ attached_device }}"
  35. state: mounted
  36. fstype: "{{ cinder_fs }}"
  37. - name: Change mode on the filesystem
  38. file:
  39. path: "{{ cinder_mount_dir.path }}"
  40. state: directory
  41. recurse: true
  42. mode: 0777
  43. - name: Unmount the device
  44. mount:
  45. name: "{{ cinder_mount_dir.path }}"
  46. src: "{{ attached_device }}"
  47. state: absent
  48. fstype: "{{ cinder_fs }}"
  49. - name: Delete the temp directory
  50. file:
  51. name: "{{ cinder_mount_dir.path }}"
  52. state: absent
  53. - name: Detach the volume from the VM
  54. os_server_volume:
  55. state: absent
  56. server: "{{ groups['masters'][0] }}"
  57. volume: "{{ cinder_volume }}"