-
Strimzi: 0.20.1 Hello, I am trying to execute kafka scripts inside the pod - for example |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The user credentials are not available anywhere in the Kafka pod. They are available in the secret created by the user operator. If you want to use them you can either copy them from there or mount it into the pod. Also, the general recommendation is to not run any commands from the broker or ZooKeeper pods - you should always start new separate pod for it to make sure you do not disturb the Kafka cluster (by starting a new JVM inside the broker pod you can for example cause resource issues etc.). |
Beta Was this translation helpful? Give feedback.
The user credentials are not available anywhere in the Kafka pod. They are available in the secret created by the user operator. If you want to use them you can either copy them from there or mount it into the pod. Also, the general recommendation is to not run any commands from the broker or ZooKeeper pods - you should always start new separate pod for it to make sure you do not disturb the Kafka cluster (by starting a new JVM inside the broker pod you can for example cause resource issues etc.).