create user: Redpanda Admin API is not enabled (Status 503)
when I use latest docker image, to create user, did I missed something?
docker run -p 8090:8080 -e KAFKA_BROKERS="localhost:9092" docker.redpanda.com/redpandadata/console:latest
This functionality requires Redpanda Admin API to be configured within the Console configuration.
Example:
redpanda:
adminApi:
enabled: true
urls: ["http://localhost:19644"]
Actually we should know whether the API for managing users are available or not and we should reflect that in the frontend. If this is not the case (e.g. for Apache Kafka users or Redpanda users that have not configured the admin api) we should improve the user experience. I'll re-open the issue until I have tried to reproduced or until we have improved the experience.
This functionality requires Redpanda Admin API to be configured within the Console configuration.
Example:
redpanda: adminApi: enabled: true urls: ["http://localhost:19644"]
thank you