赞
踩
参考:https://www.cnblogs.com/xiaojiluben/p/16799295.html
helm repo add harbor https://helm.goharbor.io
helm fetch harbor/harbor
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 ./harbor -n harbor --set externalURL=http://192.168.10.11:30002 --set expose.type=nodePort --set expose.tls.enabled=false --set persistence.enabled=false --set trivy.enabled=false --set notary.enabled=false --set registry.relativeurls=true
(这个过程需要下载公网镜像,并非离线安装)
externalURL=https不修改成http会报错:{"errors":[{"code":"FORBIDDEN","message":"CSRF token invalid"}]}
初始账号密码:admin/Harbor12345
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。