This repository was archived by the owner on Feb 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
This repository was archived by the owner on Feb 16, 2019. It is now read-only.
Helm chart installs in default namespace #312
Copy link
Copy link
Closed
Labels
Description
According to the Helm install guide, the following steps should be used for installing Istio using Helm (after installing Helm Tiller with RBAC):
$ helm install install/kubernetes/helm/istio --name istio
However, I'm not sure if this is an Helm or GKE, but this would install Istio in the default namespace, which causes the installation to freeze and fail. I was able to get around this by manually creating the namespace and explicitly referencing it in the installation:
$ kubectl create ns istio-system
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Version info:
$ kubectl version
Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.1", GitCommit:"d4ab47518836c750f9949b9e0d387f20fb92260b", GitTreeState:"clean", BuildDate:"2018-04-28T10:04:53Z", GoVersion:"go1.9.5", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"9+", GitVersion:"v1.9.6-gke.1", GitCommit:"cb151369f60073317da686a6ce7de36abe2bda8d", GitTreeState:"clean", BuildDate:"2018-04-07T22:06:59Z", GoVersion:"go1.9.3b4", Compiler:"gc", Platform:"linux/amd64"}
$ helm version
Client: &version.Version{SemVer:"v2.9.0", GitCommit:"f6025bb9ee7daf9fee0026541c90a6f557a3e0bc", GitTreeState:"clean"}
Server: &version.Version{SemVer:"v2.9.0", GitCommit:"f6025bb9ee7daf9fee0026541c90a6f557a3e0bc", GitTreeState:"clean"}
$ git rev-parse --short HEAD
4138b456