Я пытаюсь развернуть несколько µServices с lagom и kubernetes.
Кубернетский кластер готов.
Теперь мой вопрос, КАК я настраиваю доступ к Кассандре и Кафке.
Для Кассандры я узнал это (application.conf)
это правильный путь и как настроить доступ кафки (настройка на куберентес)?
спасибо
my-service.cassandra {
authentication {
username = "some-user"
password = "some-password"
}
}
lagom.persistence.read-side.cassandra {
authentication = ${my-service.cassandra.authentication}
}
cassandra-journal {
authentication = ${my-service.cassandra.authentication}
}
cassandra-snapshot-store {
authentication = ${my-service.cassandra.authentication}
}