This message was deleted.
# atlantis-community
s
This message was deleted.
d
p
I did try increasing the value form 5Gi to 15Gi, but when I do a helm upgrade it gives the forbidden error
Copy code
Forbidden: updates to statefulset spec for fields other than 'replicas', 'template', 'updateStrategy', 'persistentVolumeClaimRetentionPolicy' and 'minReadySeconds' are forbidden
Kubernetes does not allow modification of dataStoarge
d
If you are doing an in-place upgrade, its more involved as you will need to check if the PVC class allows for volume expansion and manually edit the PVC before attempting the recreate the StatefulSet
p
I am trying to run the helm upgrade command to deploy the helm values.yaml file . I have used the AWS EKS cluster to deploy atlantis and i see that PVC does not support volume expansion
d
Then you cannot expand volume, you will need to destroy and recreate
p
destroy and recreate as in the whole EKS cluster ?
d
no the Atlantis deployment
p
Ok. In that case, I would be able to change the value of dataStorage accordingly ?
d
yes, you redeploy with the bigger size
since you cannot expand the existing PVC
p
Ok. Let me try that . Thanks you