main.yml 828 B

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