-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
confluent-schema-registry deployment and service are not created when creating StrimziSchemaRegistry #77
Comments
@Guberlo was able to fix this. |
I see that here (https://github.com/lsst-sqre/strimzi-registry-operator/blob/main/strimziregistryoperator/handlers/createregistry.py#L120) we are reading the cluster name from the official strimzi labels to be put on the kafkauser resource. Is there a specific reason for that? I wonder if we even have to call the k8s api for that. What do you think about this @jonathansick ? |
Excellent idea @applike-ss, we'll implement that. Separately, one of the goals that's emerged from our use at Rubin Observatory is supporting multiple Strimzi-deployed clusters (that are operating in separate namespaces). So annotating StrimziSchemaRegistry with the cluster name also helps us with that. Also, thank you @Guberlo with pitching in on community support. 🍻 Really appreciate it. |
Having the current limit of only one schema registry and one cluster was actually bothering us as well. Great to hear that you want to fix that one as well! |
Hi, I am running a local Minikube setup. Here are the steps I followed to run schema registry on k8s (Minikube).
minikube/setupkafka.sh
Minikube/deploysro.sh
Until this everything works fine.
I ran
Minikube/deployregistry.sh
and it fails citing confluent-shema-registry deployment not found. failing at this stepkubectl wait deployment confluent-schema-registry \ --for condition=Available=True --timeout=600s -n default
This is the error.
Error from server (NotFound): deployments.apps "confluent-schema-registry" not found
When I checked for deployments and services in default namespace I didn't find confluent-schema-registery where as secrets is created. How to debug this issue ?
kubectl get svc
kubectl get secrets
The text was updated successfully, but these errors were encountered: