Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/quick-setup/kafka-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Up docker-compose :

To be sure to fetch last version of images, you can do
`export APIM_VERSION={APIM_VERSION} && docker-compose down -v && docker-compose pull && docker-compose up`
Or you can do `export APIM_REGISTRY=graviteeio.azurecr.io && export APIM_VERSION=master-latest && docker-compose up -d` to use the latest version. but you need to have access to the internal registry.
Or you can do `export APIM_REGISTRY=graviteeio.azurecr.io && export APIM_VERSION=master-latest && export APIM_KAFKA_CONSOLE_VERSION=4.9.0-alpha.3 && docker-compose up -d` to use the latest version. but you need to have access to the internal registry.



Expand Down
4 changes: 2 additions & 2 deletions docker/quick-setup/kafka-console/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ services:
- email

kafkaConsole:
image: ${APIM_REGISTRY:-graviteeio}/apim-kafka-console:${APIM_VERSION:-latest}
image: ${APIM_REGISTRY:-graviteeio}/apim-kafka-console:${APIM_KAFKA_CONSOLE_VERSION:-latest}
container_name: gio_apim_kafka_console
networks:
- kafkaConsole
Expand All @@ -194,7 +194,7 @@ services:
- KAFKA_GRAVITEE_MANAGEMENTAPIORGADMINPASSWORD=admin

kafka:
image: docker.io/bitnami/kafka:3.9
image: docker.io/bitnamilegacy/kafka:3.9
container_name: gio_apim_kafka
volumes:
- data-kafka:/bitnami/kafka
Expand Down
5 changes: 4 additions & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2006,12 +2006,15 @@ ui:
# secret:
# secretName: gravitee-config-secret-name

# NOTE: Kafka Console is in tech preview and requires a private image.
# Contact your technical account manager for access and the correct image reference.
kafkaConsole:
enabled: false
name: kafkaConsole
replicaCount: 1
image:
repository: graviteeio/apim-kafka-console
repository: graviteeio/apim-kafka-console # Update with your private registry
# tag: latest
pullPolicy: Always

lifecycle:
Expand Down