Istio 1.1 尝鲜记
环境 已经安装了 Kubernetes 集群,有1个 master 和4个 node。操作系统都是 CentOS Linux 7 下载 Istio 安装文件 curl -L https://git.io/getLatestIstio | ISTIO_VERSION=1.1.0 sh - export PATH="$PATH:/root/istio-1.1.0/bin" 安装 Tiller 这里选择在 Helm 和 Tiller 的环境中使用 helm install 命令进行安装的方式。 kubectl apply -f install/kubernetes/helm/helm-service-account.yaml 假如已经安装过,结果如下: helm init --service-account tiller 安装 istio-init chart 更新 Helm 的本地包缓存: helm repo add istio.io "https://gcsweb.istio.io/gcs/istio-prerelease/daily-build/release-1.1-latest-daily/charts/" 安装 istio-init chart,来启动 Istio CRD 的安装过程: helm install istio.io/istio-init --name istio-init --namespace istio-system 确认 Istio 的 CRD 都已经成功的提交给 Kubernetes API Server:
Continue Reading