Skip to content
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

[Enhancement] Support Kerberos based authentication type #3437

Closed
donovanmuller opened this issue Aug 3, 2020 · 2 comments
Closed

[Enhancement] Support Kerberos based authentication type #3437

donovanmuller opened this issue Aug 3, 2020 · 2 comments

Comments

@donovanmuller
Copy link

donovanmuller commented Aug 3, 2020

Is your feature request related to a problem? Please describe.
Support for configuring Kerberos authentication for Mirror Maker consuming/producing from external brokers with Kerberos based authentication.

We use a security configuration similar to the following to use Kerberos based authentication to the brokers:

Example strimzi-producer.properties

bootstrap.servers=...
sasl.mechanism=GSSAPI
security.protocol=SASL_PLAINTEXT
sasl.kerberos.service.name=kafka
sasl.jaas.config=com.sun.security.auth.module.Krb5LoginModule required \
  useKeyTab=true \
  storeKey=true \
  keyTab="xxx.keytab" \
  principal="test@test.com";

the above configuration is not possible today, given that sasl. is a forbidden property.
The above is in context of using Mirror Maker, when producing to external brokers.

Describe the solution you'd like
The ability to describe the configuration above would prevent us from having to build a custom image and using a stand alone deployment (not via KafkaMirrorMaker CR) of Mirror Maker to be able to configure the above.

Describe alternatives you've considered
We currently build a custom image the and run as a stand alone Deployment.

@scholzj
Copy link
Member

scholzj commented Aug 3, 2020

I think this is more or less duplicate to #3088

@scholzj
Copy link
Member

scholzj commented Oct 5, 2020

Closing as duplicate to #3088

@scholzj scholzj closed this as completed Oct 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants