You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already)
Issue details
I'm trying to deploy helm chart using pulumi to a EKS cluster.
I successfully wrote code for a few charts now, but I have a problem with external-dns chart.
Apparently, when I try to deploy it, it fails on rendering deployment template. with error:
running error: invocation of kubernetes:helm:template returned an error: failed to generate YAML for specified Helm chart: failed to create chart from template: execution error at (external-dns/templates/deployment.yaml:65:24): A provider is required to deploy the chart
Should I install some additional provider, or is it some problem in Helm implementation in pulumi itself?
Below code with ComponentResource - it takes as an argument classic AWS EKS cluster.
Create classic EKS cluster and try to deploy above component resource
Try to create/update stack
Expected: Helm chart is properly deployed into the cluster
Actual: Fails with error:
running error: invocation of kubernetes:helm:template returned an error: failed to generate YAML for specified Helm chart: failed to create chart from template: execution error at (external-dns/templates/deployment.yaml:65:24): A provider is required to deploy the chart
The text was updated successfully, but these errors were encountered:
I believe that this error message (A provider is required to deploy the chart) is produced by the chart template itself (e.g. using the fail function), since provider is one of the chart's input values. The chart version v1.2.0 seems quite old and I'm unable to find its exact source code (see Artifact Hub).
I'm closing this issue for now, please re-open if you're seeing it with a newer version of the chart and provider.
Hello!
Issue details
I'm trying to deploy helm chart using pulumi to a EKS cluster.
I successfully wrote code for a few charts now, but I have a problem with external-dns chart.
Apparently, when I try to deploy it, it fails on rendering deployment template. with error:
Should I install some additional provider, or is it some problem in Helm implementation in pulumi itself?
Below code with ComponentResource - it takes as an argument classic AWS EKS cluster.
Steps to reproduce
Expected: Helm chart is properly deployed into the cluster
Actual: Fails with error:
The text was updated successfully, but these errors were encountered: