我有带FP1的IBM 2.1.0.3。我找不到任何将tiller升级到2.9.1或更高版本的过程。有些舵图无法安装在ICP2.1.0.3上,因为tiller是2.7.3+icp。
有没有任何已知且稳定的步骤来将tiller升级到2.9.1?
发布于 2018-12-27 00:44:09
我看到人们在ICP上升级tiller时会出现一些棘手的错误(参见本页:https://www-01.ibm.com/support/docview.wss?uid=ibm10730087)。我不认为他们打算让你升级这样的单个组件。
预期的路径可能是安装较新版本的IBM Cloud Private。版本3.1.1使用tiller 2.9.1,因此它可能是您需要的。这将是对你来说最“稳定”的过程。
如果你想尝试一些有风险的东西,并且不介意破坏你的集群,你可以这样尝试:
kubectl删除ICP上的tiller部署使用helm init --tiller-tls.删除新的tiller部署
我以前听说过这个方法很有效,但我自己从来没有真正尝试过。
发布于 2019-02-13 14:48:52
您可以通过重新启动tiller-deploy来升级它。
# use following command to check whether the tiller-deploy pod is running or not
$kubectl get pod -n kube-system
# delete tiller-deploy deployment
$kubectl delete deployment -n kube-system tiller-deploy
# use the same command to confirm that the tiller-deploy is deleted
$kubectl get pod -n kube-system
# use the command below to deploy tiller-deploy again
$helm inithttps://stackoverflow.com/questions/53924779
复制相似问题