本文作者:丁辉
Helm部署Harbor
开始部署
添加 Helm 仓库
1
2helm repo add harbor https://helm.goharbor.io
helm repo update编辑 values.yaml
1
vi harbor-values.yaml
内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24expose:
type: ingress
tls:
enabled: true
certSource: secret
secret:
secretName: "harbor-tls"
ingress:
hosts:
core: # 域名
# 对外访问地址
externalURL: http://域名
# 配置 Harbor密码
harborAdminPassword: "Harbor12345"
# 持久化存储配置部分
persistence:
enabled: true
# 是否启用监控组件
metrics:
enabled: true安装
1
2
3
4
5helm install harbor \
--namespace harbor \
--create-namespace \
harbor/harbor \
-f harbor-values.yaml
卸载
卸载 Harbor
1
helm uninstall harbor -n harbor
删除 Harbor 命名空间
1
kubectl delete ns harbor
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/Kubernetes/Helm/Helm部署Harbor.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。