main.yml 782 B

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