I'm running in azure (aks) and want to change the ...
# general
b
I'm running in azure (aks) and want to change the storage class from default but don't see how to do that. I looked at the GCP options and could see the storage class was configurable there. Any advice?
p
@Prashant Shahi may have some insights on this
p
@Barbara Walters You can follow the below example: override-values.yaml
Copy code
global:
  storageClass: custom-azure-sc
Copy code
helm --namespace platform install my-release signoz/signoz -f override-values.yaml
b
thank you!