Closed everesio closed 4 years ago
@gustavomcarmo Please check it out. AFAIR you were interested in group membership check in the LDAP Plugin.
Great! I'll give it a try asap and give you some feedback...
Thanks!
Hi @everesio,
Just tested the new ldap filter feature and it works like a charm. You can check it out in the kafka-proxy-test project.
Great job! Ship it!
@gustavomcarmo Hi, thank you for feedback.
Hi @everesio,
When is going to be released the new version of kafka-proxy with this feature?
Thanks!
Hi @everesio,
Thanks for releasing the new version!
Just a question: would it be possible setting the LDAP admin credentials in the plugin configuration (--bind-dn
and --bind-passwd
) by using Kubernetes secrets?
Thanks!
Hi @gustavomcarmo Using secrets would mean reading from file. Are the env variables not secure enough for you use case ? e.g. Kubernetes sidecar container example (TLS_CLIENT_KEY_PASSWORD) ?
- name: kafka-proxy
image: grepplabs/kafka-proxy:latest
args:
- 'server'
- '--log-format=json'
- '--tls-client-key-password=$(TLS_CLIENT_KEY_PASSWORD)'
env:
- name: TLS_CLIENT_KEY_PASSWORD
valueFrom:
secretKeyRef:
name: tls-client-key-password
key: password
Hi @everesio,
Yes, you're right. I can use environment variables.
Thanks!
Hi @gustavomcarmo
FYI. From release v0.2.7
, 2 docker images are built.
e.g.
The second one contains precompiled plugins which are located in /opt/kafka-proxy/bin/
Please checkout the Docker images with precompiled plugins
in the README.md
configuration example