Getting error while upgrading AWX version from 23.9.0 to 24.6.1

I am upgrading AWX version from 23.9.0 to 24.6.1,the upgradtion stuck with “pod/awx-postgres-15-0 0/1 Pending 0 41m”

below error reported in log file
E0828 18:51:08.838461 13359 pv_controller.go:1568] “Error finding provisioning plugin for claim” err=“storageclass.storage.k8s.io "awx-postgres-volume" not found” PVC=“awx/postgres-15-awx-postgres-15-0”

AWX installed on K3S.

Could you please help me to resolve this issue and let me know if any additional log required

Tough to give help with this little info, but it may be that your kubernetes cluster does not have a default storage class set, so the PVC is stuck waiting eternally.

You can determine if you have a storage class set via kubectl get storageclass and an item returned should have (default) next to it. You can change the default storage class via Change the default StorageClass | Kubernetes

If this isn’t it, it might be helpful to do kubectl describe pvc postgres-15-awx-postgres-15-0 -n awx and see if there are errors.