lensesio / schema-registry-ui

Web tool for Avro Schema Registry |
http://lenses.io/product/features
421 stars 112 forks source link

schema registry basic authentication suoort #114

Open mattmadhavan-gmail opened 9 months ago

mattmadhavan-gmail commented 9 months ago

Hello, We have our own Confluent Schema registry running via docker-compose with BASIC Authentication enabled (and its working).

` SCHEMA_REGISTRY_ACCESS_CONTROL_ALLOW_METHODS: GET,POST,PUT,OPTIONS

        SCHEMA_REGISTRY_ACCESS_CONTROL_ALLOW_ORIGIN: '*'

        SCHEMA_REGISTRY_OPTS: "-Djava.security.auth.login.config=/etc/schema-registry/jaas-config.conf"

        SCHEMA_REGISTRY_AUTHENTICATION_METHOD: BASIC

        SCHEMA_REGISTRY_AUTHENTICATION_ROLES: developer

        SCHEMA_REGISTRY_AUTHENTICATION_REALM: SchemaRegistry-Props

`

The basicauth.txt file has pdsuser: testing,developer,admin

How do I configure schema-registry-ui so that its able to connect to Confluent schema registry via BASIC authentication? Please note that when the security is disabled on the schema-registry?

I appreciate in advance!!

Thanks Matt