安裝HELM 填坑

2021-09-24 14:52:08 字數 1404 閱讀 1452

2、開啟包(tar -zxvf helm-v2.9.0-linux-amd64.tar.gz)

3、將解壓檔案移動到所需位置(mv linux-amd64/helm /usr/local/bin/helm)

2、配置helm

安裝好 helm 後,通過鍵入如下命令,在 kubernetes 群集上安裝 tiller:

helm init --upgrade

在預設配置下, helm 會利用 「gcr.io/kubernetes-helm/tiller」 映象在kubernetes集群上安裝配置 tiller;並且利用 「 作為預設的 stable repository 的位址。由於在國內可能無法訪問 「gcr.io」, 「storage.googleapis.com」 等網域名稱,阿里雲容器服務為此提供了映象站點。

請執行如下命令利用阿里雲的映象來配置 helm(修改對應的版本)

輸出:$helm_home has been configured at /users/test/.helm.

$ kubectl -n kube-system get pods|grep tiller

tiller-deploy-647b89f77b-hmj82 1/1 running 0 3d

$ helm version

client: &version.version

server: &version.version

3、helm 基礎操作

建立乙個新的chart

helm repo update

檢視在群集上安裝的charts列表

helm list

報錯error: configmaps is forbidden: user 「system:serviceaccount:kube-system:default」 cannot list resource 「configmaps」 in api group 「」 in the namespace 「kube-system」

執行以下命令建立serviceaccount tiller並且給它集群管理許可權

kubectl create serviceaccount --namespace kube-system tiller

kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller

kubectl patch deploy --namespace kube-system tiller-deploy -p 『}}}』

安裝scrapy填坑

前言 在筆記本安裝了python2.7和python3.5,pip的指令分別更改為pip2以及pip3,當使用pip2安裝scrapy時順利安裝,使用pip3安裝時出錯了 報錯1 unable to find vcvarsall.bat 報錯2 command c1.exe failed no su...

手動安裝lnmp填坑

手動安裝完php7.2.8後,執行php fpm,etc init.d php fpmstart starting php fpm 30 jul 2018 11 10 21 error pool www cannot get uid for user php fpm 30 jul 2018 11 1...

windows安裝xgboost(填坑)

嘗試了該部落格下的教程自己編譯安裝,一步步下來沒有任何問題,全部執行完畢,當import的時候出現如下錯誤 winerror 127。最後黃天不負有心人,終於找到了解決方案,完美了解決了xgboost的安裝問題。這就在該鏈結下的教程,簡單翻譯步驟如下 請按照這些說明準備xgboost以便與pytho...