main.yml 830 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - lvg:
  3. pvs: "{{ dst_device }}"
  4. vg: "{{ dst_vg }}"
  5. register: dst_lvg
  6. - lvol:
  7. lv: data
  8. vg: "{{ dst_vg }}"
  9. size: 95%VG
  10. register: dst_lvol_data
  11. - lvol:
  12. lv: metadata
  13. vg: "{{ dst_vg }}"
  14. size: 5%VG
  15. register: dst_lvol_metadata
  16. - name: Update docker_storage options
  17. lineinfile:
  18. dest: /etc/sysconfig/docker-storage
  19. backrefs: yes
  20. regexp: "^(DOCKER_STORAGE_OPTIONS=)"
  21. line: '\1 --storage-opt {{ dst_options | oo_combine_key_value("=") | join(" --storage-opt ") }}'
  22. when: dst_options is defined and dst_options | length > 0
  23. register: dst_config
  24. - name: Reload systemd units
  25. command: systemctl daemon-reload
  26. notify:
  27. - restart docker
  28. when: dst_config | changed or
  29. dst_lvg | changed or
  30. dst_lvol_data | changed or
  31. dst_lvol_metadata | changed