# helm-nexus **Repository Path**: wadequ/helm-nexus ## Basic Information - **Project Name**: helm-nexus - **Description**: helm,nexus - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-29 - **Last Updated**: 2021-07-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nexus helm使用方式 1. clone nexus的仓库 2. 修改value.yaml配置文件参数案例如下 ```yaml dep: label: nexus3 name: common-nexus namespace: common-nexus replicas: 1 image: harbor.assistfc.com/base/nexus3:3.32.0 //镜像下载地址 imagepolicy: IfNotPresent resources: //资源限制的配置 li: cpu: 4000m memory: 4Gi re: cpu: 2000m memory: 2Gi sc: "cephfs" //pvc存储的相关配置 svc: name: common-nexus type: LoadBalancer //访问方式 LoadBalancer/NodePort 两种方式 loadBalancerIP: 10.41.1.209 //如为loadBalancerIP 则配置 访问的ip ``` 3. 修改完成后进行安装 4. 安装前的测试命令 ```shell helm install nexus --namespace=common-nexus --dry-run --debug nexus/ ``` 5. 测试通过后安装 ``` helm install nexus --namespace=common-nexus nexus/ ``` 6. 访问方式 通过LoadBalancerIP:80 即可进项访问 如: http://10.41.1.209:80 完成