添加istio库:

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

更新查看:

helm repo update

Hang tight while we grab the latest from your chart repositories...
...Skip local chart repository
...Successfully got an update from the "stable" chart repository
...Successfully got an update from the "istio.io" chart repository
Update Complete. helm repo list NAME URL
stable https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
local http://127.0.0.1:8879/charts
istio.io https://storage.googleapis.com/istio-release/releases/1.3.4/charts/

helm search istio  查看istio相关charts:

NAME               	CHART VERSION	APP VERSION	DESCRIPTION
istio.io/istio 1.3.4 1.3.4 Helm chart for all istio components
istio.io/istio-cni 1.3.4 1.3.4 Helm chart for istio-cni components
istio.io/istio-init 1.3.4 1.3.4 Helm chart to initialize Istio CRDs

安装istio-init图表以引导所有Istio的CRD:

helm install istio.io/istio-init --name istio-init --namespace istio-system

使用以下命令验证是否已将所有Istio CRD提交到Kubernetes api服务器:

kubectl get crds | grep 'istio.io' | wc -l
23
#打印出23就完成

安装istio:

helm install istio.io/istio --name istio --namespace istio-system

查看istio相关pod是否启动成功:

kubectl get pods -n istio-system
NAME READY STATUS RESTARTS AGE
istio-citadel-59574746c-ps2gs 1/1 Running 0 3m55s
istio-galley-7c6786768c-9m4pb 1/1 Running 0 3m55s
istio-ingressgateway-7b76ff7c54-jhfzk 1/1 Running 0 3m55s
istio-init-crd-10-1.3.4-krmtf 0/1 Completed 0 4m9s
istio-init-crd-11-1.3.4-c5gqt 0/1 Completed 0 4m9s
istio-init-crd-12-1.3.4-5jzjq 0/1 Completed 0 4m9s
istio-pilot-6c546fb5b4-pdjfv 2/2 Running 0 3m55s
istio-policy-5bd84dbc46-ks6wv 2/2 Running 0 3m55s
istio-security-post-install-1.3.4-5mbtz 0/1 Completed 0 3m55s
istio-sidecar-injector-949f4564-fm9pk 1/1 Running 0 3m55s
istio-telemetry-68766475bc-d9qhs 2/2 Running 0 3m55s
prometheus-6f74d6f76d-t8n8c 1/1 Running 0 3m55s

  

Kubernetes-使用Helm安装istio的更多相关文章

  1. kubernetes(k8s) helm安装kafka、zookeeper

    通过helm在k8s上部署kafka.zookeeper 通过helm方法安装 k8s上安装kafka,可以使用helm,将kafka作为一个应用安装.当然这首先要你的k8s支持使用helm安装.he ...

  2. Kubernetes用Helm安装Ingress并踩一下使用的坑

    1 前言 欢迎访问南瓜慢说 www.pkslow.com获取更多精彩文章! Ingress是Kubernetes一个非常重要的Controller,它类似一个路由转发的组件,可以让外界访问Kubern ...

  3. 在Mac上安装Istio并使用,有丰富的监控Kiali、Grafana、Jaeger

    我最新最全的文章都在南瓜慢说 www.pkslow.com,文章更新也只在官网,欢迎大家来喝茶~~ 1 简介 之前在文章<服务网格Istio入门-详细记录Kubernetes安装Istio并使用 ...

  4. Helm 安装Kafka

    helm镜像库配置 helm repo add stable http://mirror.azure.cn/kubernetes/charts helm repo add incubator http ...

  5. helm安装kubernetes的插件istio

    1.安装istio 要使用Helm自定义Istio安装,请使用--set <key>=<value>Helm命令中的选项覆盖一个或多个值 怎么使用选项配置请查看官网https: ...

  6. k8s1.13.3安装istio(helm方式)

    官方文档:https://istio.io/zh/docs/setup/kubernetes/install/helm/ 一.环境信息 centos7 k8s1.13.3 主机名 ip cpu ram ...

  7. kubernetes包管理工具Helm安装

    helm官方建议使用tls,首先生成证书. openssl genrsa -out ca.key.pem openssl req -key ca.key.pem -new -x509 -days -s ...

  8. kubernetes实战(十):k8s使用Helm安装harbor

    1.基本概念 对于复杂的应用中间件,需要设置镜像运行的需求.环境变量,并且需要定制存储.网络等设置,最后设计和编写Deployment.Configmap.Service及Ingress等相关yaml ...

  9. Helm 安装部署Kubernetes的dashboard

    Kubernetes Dashboard 是 k8s集群的一个 WEB UI管理工具,代码托管在 github 上,地址:https://github.com/kubernetes/dashboard ...

随机推荐

  1. oracle 应用程序调用存储函数

    package com.founder.ec.common.lucene; import java.sql.CallableStatement; import java.sql.Connection; ...

  2. 570. Managers with at Least 5 Direct Reports 至少有5个直接汇报员工的经理

    The Employee table holds all employees including their managers. Every employee has an Id, and there ...

  3. Burp Suite 如何抓取HTTPS请求

    1,下载安装burp suite工具 https://portswigger.net/burp/communitydownload 如果是windows系统,选择windows点击Download下载 ...

  4. Git 工作流之 GitFlow

    GitFlow学习: 先学习这篇:点击打开链接 Gitflow工作流是经典模型,体现了工作流的经验和精髓.随着项目过程复杂化,会感受到这个工作流中深思熟虑和威力. ////////////////// ...

  5. OpenGL和EGL入门

    一.简介 EGL 是渲染 API(如 OpenGL ES)和原生窗口系统之间的接口. 通常来说,OpenGL 是一个操作 GPU 的 API,它通过驱动向 GPU 发送相关指令,控制图形渲染管线状态机 ...

  6. 常见的几种异常类型 Exception

    常见异常类型:Java中的异常分为两大类: 1.Checked Exception(非Runtime Exception) 2.Unchecked Exception(Runtime Exceptio ...

  7. maven工程目录和类加载器ClassLoader的记录

    URL url = this.getClass().getClassLoader().getResource("/" + packageName.replaceAll(" ...

  8. MySQL中 while loop repeat 的用法

    -- MySQL中的三中循环 while . loop .repeat 求 1-n 的和 -- 第一种 while 循环 -- 求 1-n 的和 /* while循环语法: while 条件 DO 循 ...

  9. typedefine 用法

    typedef为C语言的关键字,作用是为一种数据类型定义一个新名字.这里的数据类型包括内部数据类型(int,char等)和自定义的数据类型(struct等). 用法: 变量别名 例如: 单个变量: t ...

  10. STM32F030-UART1_DMA使用提示

    STM32F030-UART1_DMA使用提示 前言: 今天把STM32F030C8T6的串口DMA学习了一下,为了加快各位研发人员的开发进度,避免浪费大量的时间在硬件平台上,写出个人代码调试的经验. ...