k8s get to rabbitMQ bindings is giving error as - Error from server (MethodNotAllowed): the server does not allow this method on the requested resource #533
-
we tried to install queues and bindings through the yaml files - from here - https://github.com/rabbitmq/messaging-topology-operator/tree/main/docs/examples
but for bindings we are getting this error -
any help here why i am getting this for my bindings?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@rameshmishra593 You need to use the full CRD name for binding as in |
Beta Was this translation helpful? Give feedback.
@rameshmishra593 You need to use the full CRD name for binding as in
k get bindings.rabbitmq.com
. There is a k8s resource calledBinding
(https://kubernetes.io/docs/reference/kubernetes-api/cluster-resources/binding-v1/), when you dokubectl get bindings
, it will default to the k8s native resource.