跳转至

安装服务网格

请确认您的集群已成功接入 容器管理 平台,然后执行以下步骤安装服务网格。

  1. 从左侧导航栏点击 容器管理 ,进入 集群列表 ,点击准备安装服务网格的集群名称。

    安装采集器

  2. 集群概览 页面中点击 控制台

    安装采集器

  3. 自控制台中逐行输入如下命令(请修改对应的 VERSION 版本号):

    # 添加 mspider 仓库,并更新,如果使用私有仓库,请将 release.daocloud.io 替换为私有仓库地址
    helm repo add mspider https://release.daocloud.io/chartrepo/mspider
    helm repo update
    
    # 找到 mspider 仓库中的版本号,一般选择最新的版本
    helm search repo mspider/mspider
    NAME                            CHART VERSION   APP VERSION     DESCRIPTION                                       
    mspider/mspider         v0.30.1         v0.30.1         Mspider management plane application, deployed ...
    mspider/mspider-mcpc    v0.30.1         v0.30.1         Mspider control plane application, independent ...
    
    # 指定版本号
    export VERSION=v0.30.1
    
    helm upgrade --install mspider mspider/mspider \
        --create-namespace -n mspider-system  \
        --set global.imageRegistry=release.daocloud.io/mspider \
        --version=${VERSION}
    

    安装采集器

    Note

    请将 0.0.0-xxx 替换为计划安装的服务网格版本号。

  4. 查看命名空间 mspider-system 下 Pod 信息,看到相关 Pod 已创建并运行,表示服务网格安装成功。

    安装采集器

下一步:创建网格

评论