k8s 1 HELM使用詳解

2022-09-20 06:00:15 字數 893 閱讀 7551

1.安裝:

wget 

mv linux-amd64/helm /usr/local/bin/helm

helm search hub

helm repo list helm倉庫檢視

helm repo add stable 倉庫新增

helm repo add google

helm repo add jetstack

helm repo remove stable 倉庫刪除

## 比如想查詢 nginx 的 chart,使用如下命令:

helm search repo chart_name

helm search repo nginx

# 新增穩定版圖表倉庫

helm repo add stable /

# 列出該圖表庫中的所有圖表

helm search repo stable

helm repo update # make sure we get the latest list of charts

helm install stable/mysql --generate-name

常用命令

helm install mk -n monkey /data/helm-charts/

helm upgrade mk -n monkey /data/helm-charts/

helm history mk -n monkey

helm rollback mk 3 -n monkey

helm status mk -n monkey

helm ls --deleted

helm delete --purge mk

在k8s集群中使用helm安裝harbor

使用helm安裝harbor需要準備如下 1 安裝helm 2 安裝provisioner 3 安裝traefik 使用helm安裝harbor git clone 開啟看一下分支 cd harbor helm git checkout 1.1.0 進入1.1.0分支 ls cert contrib...

helm安裝 玩K8S不得不會的HELM

近些年隨著容器技術的流行,容器編排管理也隨之蓬勃發展,其中尤其以kubernetes 以下均簡稱為k8s 最為著名。作為devops開發人員,產品的容器化部署 發布和測試是我們關注的焦點。隨著業務的深入,配置的複雜性也隨之增長,因此我們採用helm來進行容器化應用的配置管理。圖1 helm3 wor...

k8s問題整理 安裝helm踩坑

提示找不到請求的資源 error error installing the server could not find the requested resource原因是k8s高版本加入了service account的概念,這裡可以通過下面的方式配置service account,再init即可成...