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

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