Skip to content
Discussion options

You must be logged in to vote

Resolution: Disabling Istio sidecar injection on Kafka pods via KafkaNodePool

After testing multiple approaches, we decided to permanently disable Istio sidecar injection on Kafka pods using the podTemplate annotation directly in the KafkaNodePool CR:

apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaNodePool
metadata:
  name: broker
spec:
  template:
    pod:
      metadata:
        annotations:
          sidecar.istio.io/inject: "false"
---
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaNodePool
metadata:
  name: controller
spec:
  template:
    pod:
      metadata:
        annotations:
          sidecar.istio.io/inject: "false"

Root cause summary

The issue is not in Kafka, Cruise Contro…

Replies: 4 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@scholzj
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by mordp1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants