我正在尝试在k8s集群上安装nuclio,但仍然出现以下错误:
**rendered manifests contain a resource that already exists. Unable to continue with install: CustomResourceDefinition "nuclioapigateways.nuclio.io" in namespace "" exists and cannot be imported into the current release: invalid ownership metadata; annotation validation error: key "meta.helm.sh/release-namespace" must equal "spark": current value is "argocd"** 有什么需要帮忙的吗?
提前感谢
发布于 2021-05-21 15:52:19
你不能从两个不同的Helm应用程序安装相同的东西。您之前安装了此图表,但没有完全清理它(或者它实际上正在被其他人使用)。您可以通过kubectl delete crd手动删除CRD,但当然您应该非常确定首先这样做是安全的。
https://stackoverflow.com/questions/67632707
复制相似问题