您好,登錄后才能下訂單哦!
這篇文章給大家分享的Kubernetes Harbor的安裝和使用,相信大部分人都還沒學(xué)會這個技能,為了讓大家學(xué)會,給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。
1.Harbor介紹
Harbor是一個用于存儲和分發(fā)Docker鏡像的企業(yè)級Registry服務(wù)器,通過添加一些企業(yè)必需的功能特性,例如安全、標(biāo)識和管理等,擴展了開源Docker Distribution。作為一個企業(yè)級私有Registry服務(wù)器,Harbor提供了更好的性能和安全。提升用戶使用Registry構(gòu)建和運行環(huán)境傳輸鏡像的效率。Harbor支持安裝在多個Registry節(jié)點的鏡像資源復(fù)制,鏡像全部保存在私有Registry中, 確保數(shù)據(jù)和知識產(chǎn)權(quán)在公司內(nèi)部網(wǎng)絡(luò)中管控。另外,Harbor也提供了高級的安全特性,諸如用戶管理,訪問控制和活動審計等。
2.Harbor特性
3.Harbor組件
Harbor在架構(gòu)上主要由6個組件構(gòu)成:
Proxy:Harbor的registry, UI, token等服務(wù),通過一個前置的反向代理統(tǒng)一接收瀏覽器、Docker客戶端的請求,并將請求轉(zhuǎn)發(fā)給后端不同的服務(wù)。
Registry: 負(fù)責(zé)儲存Docker鏡像,并處理docker push/pull 命令。由于我們要對用戶進(jìn)行訪問控制,即不同用戶對Docker image有不同的讀寫權(quán)限,Registry會指向一個token服務(wù),強制用戶的每次docker pull/push請求都要攜帶一個合法的token, Registry會通過公鑰對token 進(jìn)行解密驗證。
Core services: 這是Harbor的核心功能,主要提供以下服務(wù):
UI:提供圖形化界面,幫助用戶管理registry上的鏡像(image), 并對用戶進(jìn)行授權(quán)。
webhook:為了及時獲取registry 上image狀態(tài)變化的情況, 在Registry上配置webhook,把狀態(tài)變化傳遞給UI模塊。
token 服務(wù):負(fù)責(zé)根據(jù)用戶權(quán)限給每個docker push/pull命令簽發(fā)token. Docker 客戶端向Regi?stry服務(wù)發(fā)起的請求,如果不包含token,會被重定向到這里,獲得token后再重新向Registry進(jìn)行請求。
Database:為core services提供數(shù)據(jù)庫服務(wù),負(fù)責(zé)儲存用戶權(quán)限、審計日志、Docker image分組信息等數(shù)據(jù)。
Job Services:提供鏡像遠(yuǎn)程復(fù)制功能,可以把本地鏡像同步到其他Harbor實例中。
1、環(huán)境準(zhǔn)備
CentOS Linux release 7.3.1611 (Core)
docker-ce-18.06.1
docker-compose version 1.21.2, build a133471
harbor-v1.8.0
2、安裝docker
# 使用阿里云鏡像倉庫
wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo
# 安裝docker
yum install -y docker-ce-18.06.1.ce-3 #可能找不到安裝包
yum -y install https://mirrors.aliyun.com/docker-ce/linux/centos/7/x86_64/stable/Packages/docker-ce-18.06.3.ce-3.el7.x86_64.rpm
# 設(shè)置docker啟動參數(shù)(可選)
# graph: 設(shè)置docker數(shù)據(jù)目錄:選擇比較大的分區(qū)(我這里是根目錄就不需要配置了,默認(rèn)為/var/lib/docker)
# exec-opts: 設(shè)置cgroup driver(默認(rèn)是cgroupfs,不推薦設(shè)置systemd)
# insecure-registries:設(shè)置私有倉庫
cat > /etc/docker/daemon.json <<EOF
{
"graph": "/data/docker",
"exec-opts": ["native.cgroupdriver=cgroupfs"],
"insecure-registries": ["http://192.168.101.11"]
}
EOF
# 啟動docker服務(wù)并加入開機啟動項
systemctl start docker && systemctl enable docker
3、安裝docker-compose
curl -L https://mirrors.aliyun.com/docker-toolbox/linux/compose/1.21.2/docker-compose-Linux-x86_64 -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
# docker-compose --version
docker-compose version 1.21.2, build a133471
4、安裝harbor
1、下周安裝包
# wget https://storage.googleapis.com/harbor-releases/release-1.8.0/harbor-offline-installer-v1.8.1.tgz
2、解壓并修改配置文件
# tar xf harbor-offline-installer-v1.8.1.tgz -C /usr/local
# cd /usr/local/harbor
node1上
# vim harbor.yml
hostname: 192.168.101.11
node2上
# vim harbor.yml
hostname: 192.168.101.12
3、執(zhí)行安裝腳本
# ./install.sh
? ----Harbor has been installed and started successfully.---- #看到這一行就表示成功了
Now you should be able to visit the admin portal at http://192.168.101.12.
For more details, please visit https://github.com/goharbor/harbor .
4、啟動和停止
# docker-compose up -d #啟動
# docker-compose down #停止
5、訪問測試
1、下周鏡像并提交
# docker pull centos:7.6.1810
# docker push 192.168.101.11/open/centos:7.6.1810
The push refers to repository [192.168.101.11/open/centos]
89169d87dbe2: Pushed
7.6.1810: digest: sha256:747b2de199b6197a26eb1a24d69740d25483995842b2d2f75824095e9d1d19eb size: 529
6、在另一臺服務(wù)器上重復(fù)此步驟
1、安裝nginx
# yum -y install nginx
2、配置負(fù)載均衡
# cat hub.huoban.com.conf
upstream huoban_hub {
server 192.168.101.11:80 max_fails=3 fail_timeout=10s;
server 192.168.101.12:80 max_fails=3 fail_timeout=10s;
ip_hash;
}
server {
listen 80;
server_name hub.huoban.com;
rewrite ^(.*)$ https://hub.huoban.com$1 permanent;
}
server {
listen 443 ssl;
server_name hub.huoban.com;
server_tokens off;
#proxy_set_header Host $host; #這一行不能要。加了之后會報錯
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
proxy_pass http://huoban_hub;
}
access_log /data/logs/nginx/${host}_access.log combined;
}
3、推拉鏡像測試
# docker tag centos:7.6.1810 hub.huoban.com/open/centos:7.6.18101
# docker push hub.huoban.com/open/centos:7.6.18101
The push refers to repository [hub.huoban.com/open/centos]
89169d87dbe2: Preparing
denied: requested access to the resource is denied
# docker login hub.huoban.com
Username: admin
Password:
Login Succeeded
# docker push hub.huoban.com/open/centos:7.6.18101
The push refers to repository [hub.huoban.com/open/centos]
89169d87dbe2: Layer already exists
7.6.18101: digest: sha256:747b2de199b6197a26eb1a24d69740d25483995842b2d2f75824095e9d1d19eb size: 529
# # docker pull hub.huoban.com/open/centos:7.6.18101
Trying to pull repository hub.huoban.com/open/centos ...
7.6.18101: Pulling from hub.huoban.com/open/centos
ac9208207ada: Pull complete
Digest: sha256:747b2de199b6197a26eb1a24d69740d25483995842b2d2f75824095e9d1d19eb
Status: Downloaded newer image for hub.huoban.com/open/centos:7.6.18101
關(guān)于Kubernetes Harbor的安裝和使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。