Skip to content

Commit

Permalink
Chore: Update local compose (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
Haarolean authored Oct 24, 2024
1 parent c8a8759 commit 0ad8695
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 33 deletions.
15 changes: 7 additions & 8 deletions .dev/dev_arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ services:
KAFKA_CLUSTERS_0_AUDIT_CONSOLEAUDITENABLED: 'true'

kafka0:
image: confluentinc/cp-kafka:7.2.1.arm64
image: confluentinc/cp-kafka:7.6.0.arm64
user: "0:0"
hostname: kafka0
container_name: kafka0
ports:
Expand All @@ -56,12 +57,10 @@ services:
KAFKA_JMX_PORT: 9997
# KAFKA_JMX_HOSTNAME: localhost # uncomment this line and comment the next one if running with kafka-ui as a jar
KAFKA_JMX_OPTS: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.rmi.server.hostname=kafka0 -Dcom.sun.management.jmxremote.rmi.port=9997
volumes:
- ../documentation/compose/scripts/update_run.sh:/tmp/update_run.sh
command: "bash -c 'if [ ! -f /tmp/update_run.sh ]; then echo \"ERROR: Did you forget the update_run.sh file that came with this docker-compose.yml file?\" && exit 1 ; else /tmp/update_run.sh && /etc/confluent/docker/run ; fi'"
CLUSTER_ID: 'MkU3OEVBNTcwNTJENDM2Qk'

schema-registry0:
image: confluentinc/cp-schema-registry:7.2.1.arm64
image: confluentinc/cp-schema-registry:7.6.0.arm64
ports:
- 8085:8085
depends_on:
Expand All @@ -77,7 +76,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_TOPIC: _schemas

kafka-connect0:
image: confluentinc/cp-kafka-connect:7.2.1.arm64
image: confluentinc/cp-kafka-connect:7.6.0.arm64
ports:
- 8083:8083
depends_on:
Expand All @@ -102,7 +101,7 @@ services:
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components,/usr/local/share/kafka/plugins,/usr/share/filestream-connectors"

ksqldb0:
image: confluentinc/ksqldb-server:0.18.0
image: confluentinc/cp-ksqldb-server:7.6.0.arm64
depends_on:
- kafka0
- kafka-connect0
Expand All @@ -120,7 +119,7 @@ services:
KSQL_CACHE_MAX_BYTES_BUFFERING: 0

kafka-init-topics:
image: confluentinc/cp-kafka:7.2.1.arm64
image: confluentinc/cp-kafka:7.6.0.arm64
volumes:
- ../documentation/compose/data/message.json:/data/message.json
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private Set<String> extractRoles(AccessControlService acs, DefaultOAuth2User pri
var rolesFieldName = provider.getCustomParams().get(ROLES_FIELD_PARAM_NAME);

if (rolesFieldName == null) {
log.warn("Provider [{}] doesn't contain a roles field param name, won't map roles", provider);
log.warn("Provider [{}] doesn't contain a roles field param name, won't map roles", provider.getClientName());
return Collections.emptySet();
}

Expand Down
1 change: 0 additions & 1 deletion documentation/compose/scripts/clusterID

This file was deleted.

1 change: 0 additions & 1 deletion documentation/compose/scripts/create_cluster_id.sh

This file was deleted.

11 changes: 0 additions & 11 deletions documentation/compose/scripts/update_run.sh

This file was deleted.

11 changes: 0 additions & 11 deletions documentation/compose/scripts/update_run_cluster.sh

This file was deleted.

0 comments on commit 0ad8695

Please sign in to comment.