main.yml 810 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Ensure growpart is installed
  3. package:
  4. name: cloud-utils-growpart
  5. state: present
  6. when: not openshift_is_atomic | bool
  7. register: result
  8. until: result is succeeded
  9. - name: Determine if growpart is installed
  10. command: "rpm -q cloud-utils-growpart"
  11. register: has_growpart
  12. failed_when: has_growpart.rc != 0 and 'package cloud-utils-growpart is not installed' not in has_growpart.stdout
  13. changed_when: false
  14. when: openshift_is_atomic | bool
  15. - name: Grow the partitions
  16. command: "growpart {{oep_drive}} {{oep_partition}}"
  17. - name: Expand the filesystem - xfs
  18. command: "xfs_growfs {{oep_drive}}{{oep_partition}}"
  19. when: oep_file_system == "xfs"
  20. - name: Expand the filesystem - ext(2,3,4)
  21. command: "resize2fs {{oep_drive}}{{oep_partition}}"
  22. when: oep_file_system == "ext"