kubernetes 安装带有helm的cert-manager时等待条件超时[关闭]

6vl6ewon  于 12个月前  发布在  Kubernetes
关注(0)|答案(2)|浏览(223)

已关闭此问题为not about programming or software development。它目前不接受回答。

这个问题似乎不是关于a specific programming problem, a software algorithm, or software tools primarily used by programmers的。如果你认为这个问题与another Stack Exchange site的主题有关,你可以留下评论,解释在哪里可以回答这个问题。
28天前关闭
Improve this question
Helm 安装
cert-manager jetstack
--namespace cert-manager
中文(简体)
--版本v1.13.0
--set installCRDs=true
错误:安装失败:安装后失败:发生1个错误:* 等待条件超时
我做的步骤在网站https://cert-manager.io/docs/installation/helm/.
我尝试了不同的版本,但我得到了相同的错误。

xfyts7mz

xfyts7mz1#

你可能已经有了,但值得检查。你有对外(互联网)的访问权吗? Helm 依赖于能够拿东西。
另一件需要注意的事情是如何允许在节点上进行部署。所有节点都健康吗?kubectl get nodes -o wide是检查节点的好方法。
第三个选项是检查任何日志/事件。kubectl get events -A将给予集群中的所有事件。
名称空间是否已创建证书管理器?

kubectl get ns
cbjzeqam

cbjzeqam2#

请使用“--debug --dry-run”“helm install cert-manager jetstack/cert-manager --namespace cert-manager --version v1.7.1 --set installCRD =true --debug --dry-run”解决问题。

相关问题