helm3如何安装harbor
如何在harbor中安装helm3?
下载helm3:
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
安装helm3:
chmod 700 get_helm.sh ./get_helm.sh
检查helm3是否安装成功:
helm version
添加harbor仓库:
helm repo add harbor https://helm.goharbor.io
更新helm仓库:
helm repo update
安装harbor:
helm install my-release harbor/harbor
访问harbor:
http://localhost
用户名:admin
密码:Harbor12345
相关文章