Helm repo to install istio

3/16/2018

I am trying to install istio. I can easily package the helm chart if I clone the repo from github but I am just wondering if there is a helm chart repo that I can use?

-- abelgana
istio
kubernetes-helm

4 Answers

3/3/2019

It's a pain to find, and they don't really reference it properly in the documentation, but according to these two comments, the charts can be found in the following locations:

-- tzrlk
Source: StackOverflow

7/16/2019

For a more recent answer, you can now add helm repository for istio for a specific version with helm repo add istio.io https://storage.googleapis.com/istio-release/releases/{{< istio_full_version >}}/charts/ according to documentation here.

It seems that helm repo add istio.io https://storage.googleapis.com/istio-release/releases/charts work too but for older versions (up to 1.1.2). It is not yet documented but follow a more idiomatic versionning. An issue is open on istio : https://github.com/istio/istio/issues/15498

-- Starfight
Source: StackOverflow

3/30/2018

Yes there is. A quick google search turned this up: https://github.com/istio/istio/tree/master/install/kubernetes/helm/istio

-- erstaples
Source: StackOverflow

9/17/2018

helm repo add istio https://istio.io/charts works. I found it in this PR.

-- rlaub
Source: StackOverflow