We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
INSTALLATION FAILED: <.Chart.ApiVersion> can't evalutate field ApiVersion in type interface {}
> helm install nginx-demo2 day3/my-chart Error: INSTALLATION FAILED: template: my-chart/templates/deployment.yaml:8:30: executing "my-chart/templates/deployment.yaml" at <.Chart.ApiVersion>: can't evaluate field ApiVersion in type interface {}
The error occurs when install chart which using {{ .Chart.ApiVersion }}:
{{ .Chart.ApiVersion }}
The autocomplete:
Note
How to solve this: Using {{ .Chart.APIVersion }} instead of {{ .Chart.ApiVersion }}. So, right now it is passed.
{{ .Chart.APIVersion }}
See: Helm code that is a part of using for generating key/value in the Chart.yaml
Chart.yaml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The error occurs when install chart which using
{{ .Chart.ApiVersion }}
:The autocomplete:
Note
How to solve this:
Using
{{ .Chart.APIVersion }}
instead of{{ .Chart.ApiVersion }}
.So, right now it is passed.
See: Helm code that is a part of using for generating key/value in the
Chart.yaml
The text was updated successfully, but these errors were encountered: