所以我试图在使用Docker Desktop创建的本地Kubernetes集群上安装OpenFaaS。我对OpenFaaS和Kubernetes都是陌生的,因此可以提供任何帮助!
我正在关注交互式教程here。
我已经安装了Helm,OpenFaaS Cli和FaaS-netes,并按照本教程中的所有内容进行操作,直到第4页。在该页面上,我被要求运行此程序:
helm upgrade openfaas --install openfaas/openfaas --namespace openfaas --set functionNamespace=openfaas-fn --set operator.create=true --set basic_auth=true --set rbac=false --set faasIdler.dryRun=false --set faasIdler.inactivityDuration=10s
运行时出现此错误:
UPGRADE FAILED
Error: "openfaas" has no deployed releases
Error: UPGRADE FAILED: "openfaas" has no deployed releases
我真的不应该在这里做什么。我错过了教程中的步骤吗?如何部署发行版?
任何帮助将不胜感激。
答案 0 :(得分:1)
要解决此问题,请使用helm del -purge从helm中删除openfaas条目,然后尝试对其进行重新制作。一切正常,第二次尝试。