```global: storageClass: gp3-resizable-high cloud: aws clickhouse: nodeSelector: node-cla...
d
Copy code
global:
  storageClass: gp3-resizable-high
  cloud: aws

clickhouse:
  nodeSelector:
    node-class: "server-x86"
  installCustomStorageClass: true

signoz:
  persistence:
    enabled: true
    size: 4Gi
    storageClass: gp3-resizable
Is this a bug? signoz is picking global.storageClass instead of signoz.persistence.storageClass
d
@nitya-signoz
n
Hi @Dhruv garg, you're correct. The global
storageClass
is prioritised over the component-specific value. The template logic confirms this, using the specific value only as a fallback. https://github.com/SigNoz/charts/blob/73830e8b4c3c121fd394a300744a58a8c5feedf4/charts/signoz/templates/signoz/statefulset.yaml#L194C6-L194C107
d
But shouldn't it be overridden?