when deploying signoz via helmchart how can I incr...
# support
s
when deploying signoz via helmchart how can I increase clickhouse's persistent storage size from default
20Gi
. Here are my override values:
Copy code
global:
  storageClass: gcpssd
clickhouse:
  cloud: gcp
  persistence:
    size: 50Gi
k8-infra:
  presets:
    logsCollection:
      enabled: true
      blacklist:
        enabled: true
        namespaces:
          - platform
          - kube-system
helm command:
helm install -n platform signoz signoz/signoz -f signoz-override.yml
s
Thank you for sharing that link. But it does not explain why override values are not being honoured during install
a
cc: @Prashant Shahi
p
@Salman It works as expected. override-values.yaml
Copy code
global:
  storageClass: standard  # replace this with your desired storage class
clickhouse:
  cloud: kind
  persistence:
    size: 50Gi
k8-infra:
  presets:
    logsCollection:
      enabled: true
      blacklist:
        enabled: true
        namespaces:
          - platform
          - kube-system
Helm installation command:
Copy code
helm install my-release --create-namespace -n platform signoz/signoz -f override-values.yaml
@Salman It is possible that you had previous signoz installation not removed properly. Here are proper docs on the same: https://signoz.io/docs/operate/kubernetes/#uninstall-signoz-cluster
s
ok, thank you