首页 > 其他分享 >helm部署harbor

helm部署harbor

时间:2022-10-17 15:24:14浏览次数:41  
标签:set false harbor enabled -- 部署 helm

下载安装包

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

相关文章