I am trying to install SigNoz on Kubernetes (self-...
# support
h
I am trying to install SigNoz on Kubernetes (self-hosted cluster). I see that the Helm charts have created 4 PersistentVolumeClaims which are all in Pending state. The documentation does not seem to provide any information about if (and how) I should create the volumes it needs. Can anyone point me in the right direction?
a
@Henrik You have to install csi drivers
h
Thanks. It sounds like CSI is a plugin-like system for file systems? I just want to use the local file system for now
a
@Henrik
Copy code
After you create the PersistentVolumeClaim, the Kubernetes control plane looks for a PersistentVolume that satisfies the claim's requirements. If the control plane finds a suitable PersistentVolume with the same StorageClass, it binds the claim to the volume.
As the helm chart already creates the pvc, you might have to create pv manually if its on your local https://kubernetes.io/docs/tasks/configure-pod-container/configure-persistent-volume-storage/
h
Thanks, I think I got it working now 🙂