Hey guys,
I am trying to install Loki with persistent storage via helm.
I followed the steps mentioned in the docs:
- Add repo
- Update chart repo
- Deploy
The deploy command I use was:
helm upgrade --install loki grafana/loki-stack --set grafana.enabled=true,prometheus.enabled=true,prometheus.alertmanager.persistentVolume.enabled=false,prometheus.server.persistentVolume.enabled=false,loki.persistence.enabled=true,loki.persistence.storageClassName=standard,loki.persistence.size=5Gi
Grafana starts but I cant choose Loki as data-source. The pod ‘loki-0’ does not start and under the events of ‘kubectl describe pod loki-0’ I get:
Type Reason Age From Message
---- ------ ---- ---- -------
Warning FailedScheduling 19s (x2 over 19s) default-scheduler 0/1 nodes are available: 1 pod has unbound immediate PersistentVolumeClaims.
Has anyone else experienced this and can help me, to get this pod running?
Thanks in advance!