How To Resize Storage in Your CRC Virtual Machine
To grow the image disk size, you need to stop and restart CRC to properly resize the image disk. This seems to be a bug/issue with CRC.[1][2]
On Linux, perform the following to resize the disk:
$ crc start -c 4 -m 16384 -d 50 $ CRC_MACHINE_IMAGE=${HOME}/.crc/machines/crc/crc.qcow2 $ crc stop $ cp ${CRC_MACHINE_IMAGE} ${CRC_MACHINE_IMAGE}.ORIGINAL $ virt-resize --expand /dev/vda4 \ $ {CRC_MACHINE_IMAGE}.ORIGINAL ${CRC_MACHINE_IMAGE} $ rm -f ${CRC_MACHINE_IMAGE}.ORIGINAL crc start -c 4 -m 16384 -d 50
Tekton Persistent Storage
Depending on your environment, the type of storage class available to your OpenShift cluster will vary.
CRC specifics
Currently, there are two Kustomize overlays for PersistentVolumeClaims
used in OpenShift. This is because there are different storage classes available in each environment. In Chapter 7, Open Technical Practices – The Midpoint, we bootstrap the tooling using ArgoCD. The...