-
Notifications
You must be signed in to change notification settings - Fork 392
Open
Labels
Description
See attached videos.
Simply clicking on the cluster name triggers a mobx infinite loop and you can't click anything on the page. Eventually Chrome kills the tab. Note: This happens in Firefox and Safari as well.
Screen.Recording.2025-06-19.at.4.30.55.PM.mov
If you click on the "Connectors" tab, you can see that the components are infinitely rerendered. The page doesn't crash, but you also can't click on any of the connectors I guess due to them being rerendered so frequently.
Screen.Recording.2025-06-19.at.4.33.51.PM.mov
Currently running it as such:
redpanda-console:
image: docker.redpanda.com/redpandadata/console:v3.1.1
entrypoint: /bin/sh
command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml && /app/console'
volumes:
- ./config:/tmp/config/
environment:
CONFIG_FILEPATH: ${CONFIG_FILEPATH:-/tmp/config.yml}
CONSOLE_CONFIG_FILE: |
kafka:
brokers: ["kafka:9092"]
schemaRegistry:
enabled: true
urls: ["http://schema-registry:8085"]
kafkaConnect:
enabled: true
clusters:
- name: kafka-connect
url: http://connect:9031
console:
topicDocumentation:
enabled: true
git:
enabled: true
repository:
url: https://github.com/redpanda-data/docs
branch: main
baseDirectory: tests/docker-compose
ports:
- 9032:8080
profiles: ["kafka"]