简单入门 Istio Helm 安装
Simple Getting Started Istio Helm Install
我正在尝试按照以下任一说明进行操作:
- https://istio.io/docs/setup/kubernetes/helm-install/
- https://github.com/istio/istio/tree/master/install/kubernetes/helm/istio
~ helm repo add istio.io https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
~ helm repo list
NAME URL
stable https://kubernetes-charts.storage.googleapis.com
local http://127.0.0.1:8879/charts
istio.io https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
~ helm repo update
~ helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Error: failed to download "install/kubernetes/helm/istio" (hint: running `helm repo update` may help)
~ helm dependency update install/kubernetes/helm/istio
Error: could not find <current directory>/install/kubernetes/helm/istio: stat
<current directory>/install/kubernetes/helm/istio: no such file or directory
为有同样问题的其他人回答我自己的问题:
不要使用 public helm 存储库。
从以下位置下载发布存档:
https://github.com/istio/istio/releases
解压,进入istio根目录,即可成功:
Helm 2.x 语法:
helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Helm 3.x 语法:
helm install istio install/kubernetes/helm/istio --namespace istio-system
我正在尝试按照以下任一说明进行操作:
- https://istio.io/docs/setup/kubernetes/helm-install/
- https://github.com/istio/istio/tree/master/install/kubernetes/helm/istio
~ helm repo add istio.io https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
~ helm repo list
NAME URL
stable https://kubernetes-charts.storage.googleapis.com
local http://127.0.0.1:8879/charts
istio.io https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
~ helm repo update
~ helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Error: failed to download "install/kubernetes/helm/istio" (hint: running `helm repo update` may help)
~ helm dependency update install/kubernetes/helm/istio
Error: could not find <current directory>/install/kubernetes/helm/istio: stat
<current directory>/install/kubernetes/helm/istio: no such file or directory
为有同样问题的其他人回答我自己的问题:
不要使用 public helm 存储库。
从以下位置下载发布存档:
https://github.com/istio/istio/releases
解压,进入istio根目录,即可成功:
Helm 2.x 语法:
helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Helm 3.x 语法:
helm install istio install/kubernetes/helm/istio --namespace istio-system