kubernets使用helm安装Tiller 失败
2021-01-29 06:13
标签:需要 chart 完成后 configure back xargs error: api googl 安装服务端 Tiller 报错 一直出现初始化失败 helm 安装失败 需要删除 tiller 重新安装 安装完成后 查看信息发现问题 获取镜像失败 下载镜像: 去 dockerhub 查找镜像 改tag 删除tiller 初始化,重新部署tiller kubernets使用helm安装Tiller 失败 标签:需要 chart 完成后 configure back xargs error: api googl 原文地址:https://www.cnblogs.com/cnbai/p/13206046.html问题描述
helm init --upgrade --tiller-image registry.cn-hangzhou.aliyuncs.com/google_containers/tiller:v2.14.3 --stable-repo-url https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
$HELM_HOME has been configured at /root/.helm.
Error: error installing: the server could not find the requested resou
解决办法
kubectl get all -n kube-system -l app=helm -o name|xargs kubectl delete -n kube-system
helm init --output yaml | sed ‘s@apiVersion: extensions/v1beta1@apiVersion: apps/v1@‘ | sed ‘s@ replicas: 1@ replicas: 1\n selector: {"matchLabels": {"app": "helm", "name": "tiller"}}@‘ | kubectl apply -f -
kubectl get pods -n kube-system
NAME READY STATUS RESTARTS AGE
tiller-deploy-6fc68fb6d5-99blh 0/1 ImagePullBackOff 0 14h
手动拉取镜像
fishead/gcr.io.kubernetes-helm.tiller
docker pull fishead/gcr.io.kubernetes-helm.tiller:v2.12.3
docker tag fishead/gcr.io.kubernetes-helm.tiller:v2.12.3 gcr.io/kubernetes-helm/tiller:v2.12.3
重新部署
helm reset -f
上一篇:.NET 支持长路径Long Path(260字符限制、PathTooLongException、DirectoryNotFoundException)的解决方法
下一篇:01-CSS基础知识
文章标题:kubernets使用helm安装Tiller 失败
文章链接:http://soscw.com/index.php/essay/48552.html