【云原生】在AWS平台EKS1.25,Helm安装Nexus3.20.1

使用helm方式安装

工作目录:/opt/eks/yaml/nexus3

添加helm chart源

helm repo add azure http://mirror.azure.cn/kubernetes/charts/

查询版本

chart的版本和nexus的版本有些差异,准备安装的版本是3.20.1,对应的是chart版本是1.23.1、1.23.0、1.22.0、1.21.4等,这里就安装chart最新的1.23.1版本

 helm search repo nexus --versions
#--------------------------------------------
NAME                    CHART VERSION   APP VERSION     DESCRIPTION   
azure/sonatype-nexus    1.23.1          3.20.1-01       DEPRECATED - Sonatype Nexus is an open source r...
azure/sonatype-nexus    1.23.0          3.20.1-01       Sonatype Nexus is an open source repository man...
azure/sonatype-nexus    1.22.0          3.20.1-01       Sonatype Nexus is an open source repository man...
azure/sonatype-nexus    1.21.4          3.20.1-01       Sonatype Nexus is an open source repository man...

拉取chart包

helm pull azure/sonatype-ne

猜你喜欢

转载自blog.csdn.net/zhanremo3062/article/details/131620623