本文講述的是調教 Helm 3 和 harbor 1.6+ 的經驗,從 helm2 更新到 helm 3 而且將 charts 推送到 harbor 中進行存儲,移除了原先的 helm serve,在講述怎麼操做以前先來看一下Helm 3 和 Harbor 1.6+ 的新特性。node
.Capabilities
JSONSchema
驗證 charts 的 Valuesrequirements.yaml
合併到Chart.yaml
中--generate-name
參數helm delete
--> helm uninstall
helm inspect
-> helm show
helm fetch
-> helm pull
k8s.io/helm
--> helm.sh/helm
具體新特性能夠參考Helm 3 新特性,或者參考Helm 官方文檔linux
這裏沒什麼好說的,想要了解更多關於Harbor的,能夠參考官方Githubgit
在瞭解了以上新的特性以後,讓我着手來操做吧github
這裏就很少說 kubernetes 環境的具體搭建過程了,搭建步驟隨處可見。shell
首先執行一下命令,下載並解壓安裝包api
wget https://get.helm.sh/helm-v2.14.2-linux-amd64.tar.gz
tar zxvf helm-v2.14.2-linux-amd64.tar.gz
cd linux-amd64
cp helm /usr/local/bin
複製代碼
解壓以後,你若是使用過helm 2 你會發現裏面tiller的二進制文件不見了,前文的新特性中已經說了,helm 3 已經移除了 tillerdom
接下來初始化 helm測試
helm init
複製代碼
默認添加官方 repo stable https://kubernetes-charts.storage.googleapis.com
fetch
這裏我使用的是 harbor 官方提供的 charts repo
,好奇心驅使我打開了這個網站 helm.goharbor.io/網站
這熟悉的界面讓我嚴重懷疑是使用的 helm serve 啓的 repo(滑稽臉)
添加harbor repo
helm repo add goharbor https://helm.goharbor.io
複製代碼
這個 repo 只有一個charts harbor ,對應的 harbor 版本爲1.8.1
在安裝以前咱們須要配置一下 kube config context
查看當前的context
kubectl config current-context
複製代碼
設置 context 指定對應的 namespace ,不指定使用的是 default
kubectl config set-context <current-context> --namespace test
複製代碼
這裏是由於,helm 3 開始helm 3 的執行權限和kubectl config 的權限是一致的,經過kubectl config的方式來控制helm 3 的執行權限。
按時安裝harbor ,這裏爲了簡化測試操做,我關閉了數據卷的掛載並使用的是 NodePort 方式進行訪問。
helm -n test install harbor goharbor/harbor --set persistence.enabled=false --set expose.type=nodePort --set expose.tls.enabled=false --set externalURL=http://192.168.10.196:30002
複製代碼
參數說明:
出現如下返回,就證實已經開始安裝了
NAME: harbor
LAST DEPLOYED: 2019-07-23 11:00:38.525597536 +0800 CST m=+0.690703892
NAMESPACE: test
STATUS: deployed
NOTES:
Please wait for several minutes for Harbor deployment to complete.
Then you should be able to visit the Harbor portal at https://core.harbor.domain.
For more details, please visit https://github.com/goharbor/harbor.
複製代碼
harbor 裝好以後,咱們訪問 http://192.168.10.196:30002 進行登陸 harbor, harbor 的默認帳號密碼是 admin/Harbor12345
新建一個chart repo
建立一個 test 用戶
添加 repo 到 helm 中helm repo add test http://192.168.10.76:30002/chartrepo/chart_repo
複製代碼
helm plugin install https://github.com/chartmuseum/helm-push
複製代碼
這裏最好本地配置一下 github 的 dns 地址,否則可能會出現連接超時的現象
安裝好插件以後,就能夠push charts 到 harbor 裏面了
helm push grafana-0.0.2.tgz test --username test --password xxx
複製代碼
出現以上就說明 push 成功了 ,恭喜!!!
- Github: github.com/innerpeacez
- 我的Blog: ipzgo.top
- 日拱一卒,不期速成