This is the error i am getting:
$ helm install istio --namespace istio-system --set grafana.enabled=true istio.io/istio
Error: INSTALLATION FAILED: template: istio/charts/gateways/templates/rolebindings.yaml:4:7: executing “istio/charts/gateways/templates/rolebindings.yaml” at <($spec.sds) and (eq $spec.sds.enabled true)>: can’t give argument to non-function $spec.sds
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there! 👋
The error seems to be due to a problem with how the Helm chart is being rendered and specifically, the $spec.sds variable is being treated as a function instead of a value.
This can occur if there’s a mismatch between the version of the Istio Helm chart and the Helm client you’re using.
There are a few things you can try to resolve this issue:
Check if you’re using a compatible Helm chart version for Istio with Helm 3.7. Run the following to check your Helm version:
helm version
Check the chart repository to confirm you’re using a version of Istio that supports your Helm version:
helm repo add istio https://istio-release.storage.googleapis.com/charts
helm repo update
Then list available chart versions:
helm search repo istio
If you’re using an older chart version, try installing the latest supported Istio chart:
helm install istio --namespace istio-system --set grafana.enabled=true istio/istio
- Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.