Open
Description
Describe the bug
If you create a parent chart that includes the loki chart as a dependency, its processing with 'helm template' fails.
To fix the error, please remove '$' symbol from here:
To Reproduce
Steps to reproduce the behavior:
Create a chart like
apiVersion: v2
name: my-loki
description: A Helm chart for loki
appVersion: "1.0.0"
version: "6.6.3"
dependencies:
- name: loki
version: 6.6.3
repository: https://grafana.github.io/helm-charts
and try to 'helm template' it.
Temporary workaround
Put the storage.bucketNames.*
to the parent chart's parameters, using a values file like
loki:
storage:
bucketNames:
chunks: loki-migration
ruler: loki-migration
admin: loki-migration
loki:
# other parameters here
...
Expected behavior
Compilation does not fail.
Environment:
Sonoma, Ubuntu, WSL2
Activity