Ubuntu22.04 LTS 部署harbor高可用
环境预备
均需要docker环境
IP主机名10.0.0.20harbor0110.0.0.21harbor02一、harbor 环境部署
1. 下载harbor包
- [root@harbor01:~]# wget https://github.com/goharbor/harbor/releases/download/v2.7.2/harbor-offline-installer-v2.7.2.tgz
复制代码 2. 解压软件包
- [root@harbor01:~]# tar xf harbor-offline-installer-v2.7.2.tgz -C /caixiangjia/softwares/
- [root@harbor01:~]# cd /caixiangjia/softwares/harbor/
复制代码 3. 预备配置文件
- [root@harbor01:harbor]# cp harbor.yml.tmpl harbor.yml
- [root@harbor01:harbor]# ll harbor.yml*
- -rw-r--r-- 1 root root 11567 Dec 14 21:13 harbor.yml
- -rw-r--r-- 1 root root 11567 Apr 24 2023 harbor.yml.tmpl
复制代码 4. 编辑harbor配置文件
- ...
- hostname: 10.0.0.20
- ...
- 12 # https related config
- 13 #https:
- 14 # # https port for harbor, default is 443
- 15 # port: 443
- 16 # # The path of cert and key files for nginx
- 17 # certificate: /your/certificate/path
- 18 # private_key: /your/private/key/path
- ...
- 34 harbor_admin_password: 1
- ...
- 53 data_volume: /caixiangjia/data/harbor
- ...
- # 此处方便后期prometheus监控
- 220 metric:
- 221 enabled: true
- 222 port: 9099
- 223 path: /metrics
复制代码 5. 安装 harbor
- [root@harbor01:harbor]# ./install.sh --with-chartmuseum
- ...
- [+] Building 0.0s (0/0) docker:default
- [+] Running 13/13
- ✔ Network harbor_harbor-chartmuseum Created 0.1s
- ✔ Network harbor_harbor Created 0.1s
- ✔ Container harbor-log Started 0.0s
- ✔ Container chartmuseum Started 0.0s
- ✔ Container registry Started 0.0s
- ✔ Container registryctl Started 0.0s
- ✔ Container harbor-portal Started 0.0s
- ✔ Container harbor-db Started 0.0s
- ✔ Container redis Started 0.0s
- ✔ Container harbor-core Started 0.0s
- ✔ Container nginx Started 0.0s
- ✔ Container harbor-jobservice Started 0.0s
- ✔ Container harbor-exporter Started 0.0s
- ✔ ----Harbor has been installed and started successfully.----
复制代码 6. 访问 harbor 的 WebUI
- http://10.0.0.20/
- 用户名:admin
- 密码:1
复制代码
二、harbor 的基本使用
1. 客户端配置
- [root@harbor01:~]# cat /etc/docker/daemon.json
- {
- "insecure-registries": ["10.0.0.20"]
- }
- [root@harbor01:~]# systemctl restart docker.service
复制代码 2. harbor 创建仓库
3. 给镜像打 tag
- [root@harbor01:~]# docker images
- REPOSITORY TAG IMAGE ID CREATED SIZE
- hello-world latest d2c94e258dcb 19 months ago 13.3kB
- [root@harbor01:~]# docker tag hello-world:latest 10.0.0.20/test/hello-world-latest
复制代码
4. 推送镜像到harbor仓库
- # 未登录之前
- [root@harbor01:~]# docker push 10.0.0.20/test/hello-world
- Using default tag: latest
- The push refers to repository [10.0.0.20/test/hello-world]
- ac28800ec8bb: Preparing
- unauthorized: unauthorized to access repository: test/hello-world, action: push: unauthorized to access repository: test/hello-world, action: push
- [root@harbor01:~]# docker login 10.0.0.20
- Username: admin # 输入用户名
- Password: # 输入密码,输入密码时看不见输入字符!
- WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
- Configure a credential helper to remove this warning. See
- https://docs.docker.com/engine/reference/commandline/login/#credentials-store
- Login Succeeded
- # 登录成功后会保存登录信息
- [root@harbor01:~]# more /root/.docker/config.json
- {
- "auths": {
- "10.0.0.20": {
- "auth": "YWRtaW46MQ=="
- }
- }
- }
- # 通过 base64 -d 查看你的密码
- [root@harbor01:~]# echo YWRtaW46MQ== | base64 -d | more
- admin:1
- #登录之后
- [root@harbor01:~]# docker push 10.0.0.20/test/hello-world
- Using default tag: latest
- The push refers to repository [10.0.0.20/test/hello-world]
- ac28800ec8bb: Pushed
- latest: digest: sha256:d37ada95d47ad12224c205a938129df7a3e52345828b4fa27b03a98825d1e2e7 size: 524
复制代码 5.web页面查看
6. 推送镜像完成后立刻退出(制止密码走漏)
- [root@harbor01:~]# docker logout 10.0.0.20
- Removing login credentials for 10.0.0.20
- [root@harbor01:~]# more /root/.docker/config.json
- {
- "auths": {}
- }
- [r
复制代码 7. 其他客户端拉取镜像,【需要配置信任仓库】
- [root@harbor02:~]# cat /etc/docker/daemon.json
- {
- "insecure-registries": ["10.0.0.20"]
- }
- [root@harbor02:~]# systemctl restart docker.service
- [root@harbor02:~]# docker pull 10.0.0.20/test/hello-world:latest
- latest: Pulling from test/hello-world
- c1ec31eb5944: Pull complete
- Digest: sha256:d37ada95d47ad12224c205a938129df7a3e52345828b4fa27b03a98825d1e2e7
- Status: Downloaded newer image for 10.0.0.20/test/hello-world:latest
- 10.0.0.20/test/hello-world:latest
复制代码 三、harbor 高可用环境搭建
1. 将harbor发送到10.0.0.21节点
- [root@harbor01:~]# scp harbor-offline-installer-v2.7.2.tgz 10.0.0.21:/root
复制代码 2. 解压软件包
- [root@harbor02:~]# tar xf harbor-offline-installer-v2.7.2.tgz -C /caixiangjia/softwares/
复制代码 3. 将harbor配置文件发送到10.0.0.21节点
- [root@harbor01:harbor]# scp harbor.yml 10.0.0.21:/caixiangjia/softwares/harbor/
复制代码 4. 安装harbor
- # 修改harbor配置文件
- [root@harbor02:harbor]# vim harbor.yml
- ...
- hostname: 10.0.0.21
- ...
- [root@harbor02:harbor]# ./install.sh --with-chartmuseum
复制代码 5. 访问harbor 的WebUi
- http://10.0.0.21/
- 账号:admin
- 密码:1
复制代码
6. 10.0.0.20节点新建仓库
7. 10.0.0.20节点新建复制规则
8. 10.0.0.21节点新建仓库
9. 10.0.0.21节点新建复制规则
10. 测试验证结果
推送镜像到 20 节点,观察 21 是否有同步数据- [root@harbor01:~]# docker push 10.0.0.20/wordpress/wordpress:latest
复制代码
推送镜像到 21 节点,观察 20 是否有同步数据- [root@harbor02:~]# docker push 10.0.0.21/mysql/mysql:8.0.36-oracle
复制代码
11. 配置keepalived
1. 分别安装keepalived
- [root@harbor01:~]# apt -y install keepalived
- [root@harbor02:~]# apt -y install keepalived
复制代码 2. 修改 keepliaved 的配置文件
[code][root@harbor01:~]# cat > /etc/keepalived/keepalived.conf |