-
What Grafana version and what operating system are you using?
Newest helm chart of loki installation on kubernetes 1.26.10 -
What are you trying to achieve?
Installing loki on kubernetes through helm, adding an service and ingress to the deployment -
How are you trying to achieve it?
Using helm and applying a custom values.yaml -
What happened?
We have a standard config for adding ingress to a helm values installation:
ingress:
enabled: true
className: "nginx"
pathtype: ImplementationSpecific
annotations: {}
kubernetes.io/ingress.class: nginx
hosts:
- host: loki.example.com
secretName: ingress-tls
paths:
- path: /
pathType: Prefix
backend:
service:
name: loki-gateway
port:
name: "http"
But for some reason, helm installation of loki is not accepting these values and will throw this error:
install.go:251: [debug] WARNING: This chart or one of its subcharts contains CRDs. Rendering may fail or contain inaccuracies.
Error: INSTALLATION FAILED: template: loki/templates/ingress.yaml:35:19: executing "loki/templates/ingress.yaml" at <.>: wrong type for value; expected string; got map[string]interface {}
helm.go:84: [debug] templ
- What did you expect to happen?
The standard ingress config to be working.