Skip to main content

Hello Team,

I’m receiving error trying to update from K10 7.0.7 to 7.0.8. Environment k8s and the storage CSI used is Longhorn.

The StorageClass is already true to allowExpansion.

So anyone can help?

Hi @Rafael Cezario ,

Thanks for reaching out to Veeam Kasten community.

By any chance have you modified the size of metering pvc out of the helm variable? by default its 2Gi.

 Can you paste the output of “kubectl get pvc -n kasten-io”

 

You can append this variable to your upgrade command to set the new size if its changed.   --set global.persistence.metering.size=<SizeGi>

 

Let me know if you have any questions.

Regards
Satish

 


@Satish Thank you for your help.

After validating the “kubectl get pvc -n kasten-io” as you mentioned, it was possible to verify that the default value was increased to 3Gi.
So, I ran the update again with:

helm repo update && \
helm get values k10 --output yaml --namespace=kasten-io > k10_val.yaml && \
helm upgrade k10 kasten/k10 --namespace=kasten-io -f k10_val.yaml --set global.persistence.metering.size=3Gi

And the update worked perfectly.

Thank you.


Comment