美文网首页
Mac 环境安装 k8s, helm, harbor

Mac 环境安装 k8s, helm, harbor

作者: 国服最坑开发 | 来源:发表于2021-12-10 09:21 被阅读0次

前提

安装好了 DockerDesktop, 启用了Kubernetes

安装helm

brew install helm

安装 nginx-ingress-controller

helm upgrade --install ingress-nginx ingress-nginx  --repo https://kubernetes.github.io/ingress-nginx  --namespace ingress-nginx --create-namespace

安装本地版 harbor

helm repo add harbor https://helm.goharbor.io
helm install my-release harbor/harbor --set expose.type=nodePort --set expose.tls.enabled=false

#vim /etc/hosts
127.0.0.1 core.harbor.domain
image.png

http://core.harbor.domain/harbor:30002
http://localhost:30002

login: admin
password: Harbor12345


image.png

ref:
https://serverascode.com/2020/04/28/local-harbor-install.html

相关文章

网友评论

      本文标题:Mac 环境安装 k8s, helm, harbor

      本文链接:https://www.haomeiwen.com/subject/nopnxrtx.html