You cannot directly edit the reclaim policy since changing the StorageClass's reclaimPolicy will only affect newly created PVs. It will not change the persistentVolumeReclaimPolicy of your existing PVs.
The recommended approach is to create a new StorageClass with the "Retain" policy then migrate your existing PVCs using this command:
List the PersistentVolumes in your cluster:
kubectl get pv
Choose one of your PersistentVolumes and change its reclaim policy:
kubectl patch pv <your-pv-name> -p '{"spec":{"persistentVolumeReclaimPolicy":"Retain"}}'
Verify that your chosen PersistentVolume has the right policy:
kubectl get pv
For further reference you can refer to this documentation.