Kafka with TLS/SSL in Docker
I am trying to work in more Test-Driven-Development style - which effectively means writing the tests for some functionality before writing the implementation. When the functionality requires connecting to another service, I think that it makes sense to start with an integration test. Docker is a great tool for spinning up an ephemeral service to use in the test. Recently I found myself wanting to implement Kafka <–> Bento (stream processor) connection using OAUTHBEARER. To use OAUTHBEARER effectively you should also set-up that connection with tls/ssl. ...