helm安装istio_Helm 安装istio

部署 istio

1.添加 istio 官方的 helm 仓库

helm repo add istio https://storage.googleapis.com/istio-release/releases/1.3.3/charts/

2.是否添加成功

[root@master ~]# helm repo list

NAME URL

stable https://kubernetes-charts.storage.googleapis.com

local http://127.0.0.1:8879/charts

elastic https://helm.elastic.co

istio.iohttps://storage.googleapis.com/istio-release/releases/1.3.2/charts/

istio https://storage.googleapis.com/istio-release/releases/1.3.3/charts/

3.创建 istio-system 命名空间

kubectl create ns istio-system

4.创建 istio 所需的 crd 文件

helm install istio-init istio/istio-init -n istio-system

5.检查 CRD 文件是否创建完成,输出为23

kubectl get crds | grep 'istio.io' | wc -l

23

6.部署 istio

helm install istio istio/istio -n istio-system

NAME: istio

LAST DEPLOYED: Thu Oct 24 12:05:06 2019

NAMESPACE: istio-system

STATUS: deployed

REVISION: 1

NOTES:

Thank you for installing Istio.

Your release is named Istio.

To get started running application with Istio, execute the following steps:

1. Label namespace that application object will be deployed to by the following command (take default namespace as an example)

kubectl label namespace default istio-injection=enabled

​ kubectl get namespace -L istio-injection

2. Deploy your applications

$ kubectl apply -f .yaml

For more information on running Istio, visit:

https://istio.io/

卸载 istio

1.卸载 istio

helm -n istio-system uninstall istio

2.删除 istio crd 文件

helm -n istio-system uninstall istio-init

kubectl delete crd `kubectl get crd | grep istio| awk '{print $1}'`

一键部署及卸载 istio 的脚本

部署脚本

#!/bin/bash

# Add istio official repo

add_repo(){

VERSION=$1

REPO="https://storage.googleapis.com/istio-release/releases/${VERSION}/charts/"

helm repo add istio $REPO

STATUS_CMD=`echo $?`

CHECK_REPO_CMD=`helm repo list | grep $REPO | wc -l`

echo "$STATUS_CMD"

echo "$CHECK_REPO_CMD"

while [[ $STATUS_CMD != 0 && $CHECK_REPO_CMD -ge 1 ]]

do

sleep 5

helm repo add istio $REPO

STATUS_CMD=`echo $?`

CHECK_REPO_CMD=`helm repo list | grep $REPO | wc -l`

done

}

# Create istio-system namespace

create_namespace() {

NAMESPACE=$1

kubectl create ns ${NAMESPACE}

STATUS_CMD=`echo $?`

while [[ $STATUS_CMD != 0 ]]

do

sleep 5

kubectl create ns ${NAMESPACE}

STATUS_CMD=`echo $?`

done

}

# Create CRD need for istio

create_crd() {

NAMESPACE=$1

helm install istio-init istio/istio-init -n ${NAMESPACE}

CRD_COUNT=`kubectl get crds | grep 'istio.i' | wc -l`

while [[ ${CRD_COUNT} != 23 ]]

do

sleep 5

CRD_COUNT=`kubectl get crds | grep 'istio.io' | wc -l`

done

echo 'Istio crd create successful'

}

# Deploy istio related components

deploy_istio() {

NAMESPACE=$1

VERSION=$2

helm install istio istio/istio -n ${NAMESPACE}

check() {

kubectl -n ${NAMESPACE} get deploy | grep istio | awk '{print "deployment/"$1}' | while read line ;

do

kubectl rollout status $line -n ${NAMESPACE};

done

}

check

echo "Istio is deployed successful"

}

main(){

ISTIO_VERSION="1.3.3"

ISTIO_NAMESPACE="istio-system"

add_repo $ISTIO_VERSION

if [[ `kubectl get ns | grep $ISTIO_NAMESPACE | wc -l ` == 0 && `kubectl get ns $ISTIO_NAMESPACE | grep -v NAME | wc -l` == 0 ]] ;then

create_namespace $ISTIO_NAMESPACE

fi

create_crd $ISTIO_NAMESPACE

deploy_istio $ISTIO_NAMESPACE $ISTIO_VERSION

}

main

卸载脚本

#!/bin/bash

helm -n istio-system uninstall istio

helm -n istio-system uninstall istio-init

kubectl delete crd `kubectl get crd | grep istio | awk '{print $1}'`

kubectl delete ns istio-system

原文链接:Helm 安装istio,转载请注明来源!

分享到:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值