下载安装包
helm repo add harbor https://helm.goharbor.io
helm fetch harbor/harbor
opt
# 搜索所有版本并下载指定版本
helm search repo harbor --versions
helm pull harbor/harbor --version 1.8.2
安装
tar zxf harbor-1.8.2.tgz
# 创建命名空间
kubectl create ns harbor
# 安装harbor到harbor命名空间
# externalURL: 访问地址,非常重要
# persistence.enabled: 测试使用,关闭持久化
# registry.relativeurls: 前面再放一层代理需要的配置
helm install harbor -n harbor ./harbor \
--set externalURL http://harbor.example.com \
--set expose.type nodePort \
--set expose.tls.enabled false \
--set persistence.enabled false \
--set disableredirect true \
--set trivy.enabled false \
--set notary.enabled false \
--set registry.relativeurls true
标签:set,false,harbor,enabled,--,部署,helm
From: https://www.cnblogs.com/xiaojiluben/p/16799295.html