From fd2673f889e93b8eb51d86e0dae17ef3b3e6341a Mon Sep 17 00:00:00 2001 From: Gianluca Date: Tue, 5 Mar 2024 17:18:00 +0100 Subject: [PATCH] Checkpoint --- examples/quickstart-schema-registry/README.md | 2 +- examples/quickstart-ssl/docker-compose.yml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/quickstart-schema-registry/README.md b/examples/quickstart-schema-registry/README.md index 124a8b0a..24834454 100644 --- a/examples/quickstart-schema-registry/README.md +++ b/examples/quickstart-schema-registry/README.md @@ -54,7 +54,7 @@ The [docker-compose.yml](docker-compose.yml) has been revised to configure the i schema.registry.ssl.key.password=producer-password ``` -In addition, the `schema-registry` service references the local [`secrets/schema-registry`](secrets/schema-registry/) folder to retrieve its secrets: +In addition, the `schema-registry` service references the local [`secrets/schema-registry`](../compose-templates/secrets/schema-registry/) folder to retrieve its secrets: - the truststore file [`schema-registry.truststore.jks`](../compose-templates/secrets/schema-registry/schema-registry.truststore.jks); - the keystore file [`broker.schema-registry.jks`](../compose-templates/secrets/schema-registry/schema-registry.keystore.jks); diff --git a/examples/quickstart-ssl/docker-compose.yml b/examples/quickstart-ssl/docker-compose.yml index 5cbd0308..a0b47d74 100644 --- a/examples/quickstart-ssl/docker-compose.yml +++ b/examples/quickstart-ssl/docker-compose.yml @@ -68,9 +68,12 @@ services: configs: producer.properties: content: | + # Enable SSL security.protocol=SSL + # Truststore configuration to authenticate the broker ssl.truststore.location=/usr/app/secrets/producer.truststore.jks ssl.truststore.password=producer-truststore-password + # Keystore configuration for client authentication with the broker ssl.keystore.location=/usr/app/secrets/producer.keystore.jks ssl.keystore.password=producer-password ssl.key.password=producer-password