etcd-operator
etcd-operator copied to clipboard
unable to recognize "": no matches for kind "EtcdCluster"
I would like to immediately apologize if I do not properly fill out this issue form or if I am in the wrong spot.
I am trying to install a helm chart on a kubernetes cluster.
sudo ./helm install -n seba cord/seba --version=1.0.0
Error: validation failed: unable to recognize "": no matches for kind "EtcdCluster" in version "etcd.database.coreos.com/v1beta2"
Can someone help me understand or resolve this issue I have exhausted nearly every online post and none of them explain what's happening.
You or something has not installed etcd-operator correctly leaving you without EtcdCluster resource. I have no idea what you are installing with helm nor am I a helm expert so can't help there. In general you probably don't have RBAC setup properly take a look at this doc.
https://github.com/coreos/etcd-operator/blob/master/doc/user/rbac.md
Then figure out what is trying to use etcd-operator and make sure it is installing correctly. You should see some hints in the logs for etcd-operator pod.
How do I get the logs for etcd operator
and how to i uninstall and re install etcd operator
@KevinRiordan, re: logs, do: kubectl logs etcd-operator...
(you'll have to fill in the full name of the etcd-operator pod).
See https://github.com/coreos/etcd-operator/blob/master/doc/user/install_guide.md for how to uninstall etcd-operator and re-install it.