Ingress in Helm chart broken #16800
Labels
area/platform
issues related to the platform
community
helm
kubernetes
team/prod-eng
type/bug
Something isn't working
Activating the ingress breaks the helm chart:
{"level":"error","ts":"2022-09-15T12:52:48.137Z","msg":"reconciliation failed: Helm upgrade failed: template: airbyte/charts/webapp/templates/ingress.yaml:53:33: executing \"airbyte/charts/webapp/templates/ingress.yaml\" at <.Release.Name>: nil pointer evaluating interface {}.Name","name":"airbyte","namespace":"data-warehouse-airbyte","reconciler kind":"HelmRelease","annotations":{"helm.toolkit.fluxcd.io/revision":"0.40.6"}}
Test with: webapp.ingress.enabled: true
It used to work with v '0.41.0'
Here is the culprit: https://github.com/airbytehq/airbyte/blob/master/charts/airbyte-webapp/templates/ingress.yaml#L53
It should be
{{ $.Release.Name }}
instead of{{ .Release.Name }}
because it is inside a rangeThe text was updated successfully, but these errors were encountered: