Creating Strimzi cluster on kubernetes

4/12/2020

I followed below link to create strimzi cluster operator in k8s

https://medium.com/@sincysebastian/setup-kafka-with-debezium-using-strimzi-in-kubernetes-efd494642585

Downloaded strimzi 0.17.0 version and unzip it. I ran Kubectl apply -f apply install/cluster-operator . I am getting error "Detection of version failed" and it's socket connection timed out.

For work around I have added STRIMZI_KUBERNETES_VERSION in cluster-operator conf file . Now I am getting "Detection of routes.openshift.io/ API failed . API Will be disabled".

I thought it network policy issue and added to allow all ports. Getting same errors. ... egress: - {} ingress: - {}

Can anyone please help me out what I am missing here and how to make it strimzi with debezuim in k8s .

Thanks in advance.

-- Meenugu
kubernetes
openshift
strimzi

1 Answer

4/12/2020

Im not sure about the error you are getting but installing Strimzi using Helm is painless, I never faced any installation crashes:

Below is for Kafka app:

helm install strimzi/strimzi-kafka-operator \
--name my-strimzi-release \
--namespace strimzi \
--version 0.15.0
-- sudhir tatraju
Source: StackOverflow