From b234be16a4ce90712409fc42f399e87ccdcad6ab Mon Sep 17 00:00:00 2001 From: Gianluca Date: Fri, 15 Mar 2024 10:47:21 +0100 Subject: [PATCH] Update examples/quicksstart-schema-registry/README.md --- examples/quickstart-schema-registry/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/quickstart-schema-registry/README.md b/examples/quickstart-schema-registry/README.md index 459cc768..dba1cada 100644 --- a/examples/quickstart-schema-registry/README.md +++ b/examples/quickstart-schema-registry/README.md @@ -4,24 +4,24 @@ This folder contains a variant of the [_Quick Start SSL_](../quickstart-ssl/READ The [docker-compose.yml](docker-compose.yml) file has been revised to configure the integration with [_Confluent Docker Image for Schema Registry_](https://hub.docker.com/r/confluentinc/cp-schema-registry) as follows: -- New _schema-registry_ service, pulled from the mentioned Docker image and configured with security settings. +- new _schema-registry_ service, pulled from the mentioned Docker image and configured with security settings - _kafka-connector_: - Adaption of [`adapters.xml`](./adapters.xml) to include: - - Enabling of the Schema Registry: + adaption of [`adapters.xml`](./adapters.xml) to include: + - enabling of the Schema Registry: ```xml true ``` - - Configuration of the target Schema Registry URL: + - configuration of the target Schema Registry URL: ```xml https://schema-registry:8084 ``` - - Configuration of the trust store to authenticate the Schema Registry. + - configuration of the trust store to authenticate the Schema Registry. ```xml secrets/kafka-connector.truststore.jks kafka-connector-truststore-password ``` - - Configuration of the key store for client authentication with the Schema Registry. + - configuration of the key store for client authentication with the Schema Registry. ```xml true secrets/kafka-connector.keystore.jks @@ -30,7 +30,7 @@ The [docker-compose.yml](docker-compose.yml) file has been revised to configure ``` - _producer_: - Extension of the `producer.properties` configuration file with the settings required to communicate with the Schema Registry: + extension of the `producer.properties` configuration file with the settings required to communicate with the Schema Registry: ```yaml ... @@ -55,7 +55,7 @@ In addition, the `schema-registry` service references the local [`secrets/schema You can regenerate all of them with: ```sh -./generate-secrets.sh +$ ./generate-secrets.sh ``` ## Run