banner
NEWS LETTER

Helm部署Harbor

Scroll down

本文作者:丁辉

Helm部署Harbor

官网地址 Github下载地址

开始部署

  1. 添加 Helm 仓库

    1
    2
    helm repo add harbor https://helm.goharbor.io
    helm repo update
  2. 编辑 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
    24
    expose:
    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
  3. 安装

    1
    2
    3
    4
    5
    helm install harbor \
    --namespace harbor \
    --create-namespace \
    harbor/harbor \
    -f harbor-values.yaml

卸载

  1. 卸载 Harbor

    1
    helm uninstall harbor -n harbor
  2. 删除 Harbor 命名空间

    1
    kubectl delete ns harbor

I'm so cute. Please give me money.

其他文章
cover
Helm部署Haproxy
  • 70/01/01
  • 00:00
  • Kubernetes-Helm
cover
Helm部署HertzBeat
  • 70/01/01
  • 00:00
  • Kubernetes-Helm
目录导航 置顶
  1. 1. Helm部署Harbor
    1. 1.1. 开始部署
    2. 1.2. 卸载
请输入关键词进行搜索