Replies: 2 comments 3 replies
-
The Cluster Operator log should show why is it failing. But from how you describe it, it sounds to me like there is some issue with your Ingress. Strimzi will wait for the Ingress controller to confirm that it accepted the Ingress resource by updating the address in its The broker address in the format |
Beta Was this translation helpful? Give feedback.
-
I see this output apiVersion: v1
items:
- apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
ingress.kubernetes.io/ssl-passthrough: "true"
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
# ...
spec:
rules:
- host: broker-0.<IP>.<myip.my.institution.com>
http:
paths:
- backend:
serviceName: kafka-cluster-kafka-0
servicePort: 9094
path: /
pathType: Prefix
tls:
- hosts:
- broker-0.<IP>.<myip.my.institution.com>
status:
loadBalancer: {} there is clearly something missing, but I don't know what. In my other cluster, where things are working, I can see something similar to what I am expecting # ....
status:
loadBalancer:
ingress:
- ip: 10.10.10.10 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am using strimzi 0.25.0. After having installed the operator with helm I tested different configurations (e.g.
strimzi-0.25.0/examples/kafka/kafka-ephemeral.yaml
) of kafka cluster to be sure that everything is working.Then I tried to expose kafka using an ingress, NGINX in this case. After making sure that the controller was running with the TSL passthrough enabled, I created the cluster from this yaml.
where X.X.X.X is the K8S master IP.
However, in this case only the zookeeper pod is being created. I can see that the ingresses for the brokers are created, but the pods are not. If I remove the external listener everything work again. How can I debug this?
A couple of months ago I followed a similar procedure on another cluster with strimzi 0.22.1 and everything worked (and it is still running).
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions