Hi everyone! Is there a way to authorize DataHub i...
# all-things-deployment
g
Hi everyone! Is there a way to authorize DataHub in Kafka Schema Registry using username/password? Can’t find any solution in the docs.
o
You'll need to set up the SASL configs: (in values.yaml)
Copy code
springKafkaConfigurationOverrides:
    security.protocol: SASL_SSL
    sasl.mechanism: PLAIN

  credentialsAndCertsSecrets:
    name: <SASL_CONFIG_SECRET_NAME>
    secureEnv:
      sasl.jaas.config: <JAAS_CONFIG>
      sasl.username: <USERNAME>
      sasl.password: <PASSWORD>
g
As far as I understand this works for Kafka auth but not for Schema Registry or am I wrong?