[Cloud native] On AWS platform EKS1.25, Helm installs Nexus3.20.1

Install using helm method

Work list:/opt/eks/yaml/nexus3

Add helm chart source

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

Query version

There are some differences between the chart version and the nexus version. The version to be installed is 3.20.1, and the corresponding chart versions are 1.23.1, 1.23.0, 1.22.0, 1.21.4, etc. Here we will install the latest chart version 1.23. 1 version

 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...

Pull chart package

helm pull azure/sonatype-ne

Guess you like

Origin blog.csdn.net/zhanremo3062/article/details/131620623