From 35c5d4460630e80c88e8640fdea350c7f6b2191e Mon Sep 17 00:00:00 2001 From: Gianluca Finocchiaro Date: Fri, 25 Oct 2024 12:12:45 +0200 Subject: [PATCH] Fix broken links in the examples/quickstart-schema-registry/READM.md file (#24) --- CHANGELOG.md | 1 + examples/quickstart-schema-registry/README.md | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c062f11..a9752f8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -111,3 +111,4 @@ Modified the [README.md](README.md) file has follows: ## [0.1.0] (2024-03-17) - First public pre-release + diff --git a/examples/quickstart-schema-registry/README.md b/examples/quickstart-schema-registry/README.md index 2a2e8191..43c00bd0 100644 --- a/examples/quickstart-schema-registry/README.md +++ b/examples/quickstart-schema-registry/README.md @@ -1,6 +1,6 @@ # Quick Start with Schema Registry -This folder contains a variant of the [_Quick Start SSL_](../../../quickstart-ssl/README.md#quick-start-ssl) app configured to use the _Confluent Schema Registry_. +This folder contains a variant of the [_Quick Start SSL_](../quickstart-ssl/README.md#quick-start-ssl) app configured to use the _Confluent Schema Registry_. 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: @@ -51,10 +51,10 @@ The [docker-compose.yml](docker-compose.yml) file has been revised to configure schema.registry.ssl.key.password=producer-private-key-password ``` -In addition, the `schema-registry` service references the local [`secrets/schema-registry`](./secrets/schema-registry/) folder to retrieve the following secrets: +In addition, the `schema-registry` service references the local [`secrets/schema-registry`](../compose-templates/secrets/schema-registry/) folder to retrieve the following secrets: -- The trust store file [`schema-registry.truststore.jks`](../../../compose-templates/secrets/schema-registry/schema-registry.truststore.jks) -- The key store file [`schema-registry.keystore.jks`](../../../compose-templates/secrets/schema-registry/schema-registry.keystore.jks) +- The trust store file [`schema-registry.truststore.jks`](../compose-templates/secrets/schema-registry/schema-registry.truststore.jks) +- The key store file [`schema-registry.keystore.jks`](../compose-templates/secrets/schema-registry/schema-registry.keystore.jks) You can regenerate all of them with: @@ -64,4 +64,4 @@ $ ./generate-secrets.sh ## Run -From this directory, follow the same instructions you can find in the [Quick Start](../../../../README.md#run) section of the main README file. +From this directory, follow the same instructions you can find in the [Quick Start](../../README.md#run) section of the main README file.