After upgrading your Breeze plan, you may need to expand your filesystem to use the additional disk space.
Check Current Disk Size
df -h
lsblkGrow the Partition
For ext4 filesystems:
growpart /dev/sda 1
resize2fs /dev/sda1For XFS filesystems (common on RHEL-based distros):
growpart /dev/sda 1
xfs_growfs /Verify
df -hThe filesystem should now show the full disk size from your upgraded plan.