https://signoz.io logo
Title
r

Rahul Tiwari

09/21/2022, 7:28 AM
Hello Team, I want to update my pv and pvc of clickhouse.persistence.size from 20GB to 100GB, i have also followed the below command but it is also updating my signoz from v0.10.2 to the latest version but i don't want to update my signoz version as such. kubectl patch storageclass gp2 -p '{"allowVolumeExpansion": true}' helm -n platform upgrade my-release signoz/signoz --set clickhouse.persistence.size=100Gi
p

Prashant Shahi

09/21/2022, 8:29 AM
@Rahul Tiwari you would have to either choose specific chart version along with that.. Or pass
override-values.yaml
consisting of the desired chart versions
r

Rahul Tiwari

09/21/2022, 2:01 PM
@Prashant Shahi Thank you for the reply
kubectl patch storageclass gp2 -p '{"allowVolumeExpansion": true}' helm -n platform upgrade my-release signoz/signoz --version 0.2.5 --set clickhouse.persistence.size=125Gi
i tried the above command and it is working fine.
p

Prashant Shahi

09/21/2022, 4:28 PM
The latter would have been better since it consists of chart fixes and improvements. Here is the command:
helm -n platform upgrade my-release signoz/signoz --set queryService.image.tag=0.10.2 —-set frontend.image.tag=0.10.2 --set clickhouse.persistence.size=125Gi