Skip to content

Commit

Permalink
Update docs for substitution variable usage in v3 (#409)
Browse files Browse the repository at this point in the history
closes #403
  • Loading branch information
sujuka99 authored Jan 11, 2024
1 parent 1547eca commit 3a86e04
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/docs/resources/pipeline-components/kafka-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
app: # required
streams: # required
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
nameOverride: override-with-this-name # kafka-app-specific
imageTag: "1.0.0" # Example values that are shared between streams-app and producer-app
# Helm repository configuration (optional)
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/resources/pipeline-components/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
app: # required
streams: # required
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
nameOverride: override-with-this-name # kafka-app-specific
imageTag: "1.0.0" # Example values that are shared between streams-app and producer-app
# Helm repository configuration (optional)
Expand Down Expand Up @@ -328,7 +328,7 @@
app: # required
streams: # required, producer-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
outputTopic: output_topic
extraOutputTopics:
output_role1: output_topic1
Expand Down Expand Up @@ -399,7 +399,7 @@
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
inputTopics:
- topic1
- topic2
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/resources/pipeline-components/producer-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
app: # required
streams: # required, producer-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
outputTopic: output_topic
extraOutputTopics:
output_role1: output_topic1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
app: # required
streams: # required
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
nameOverride: override-with-this-name # kafka-app-specific
imageTag: "1.0.0" # Example values that are shared between streams-app and producer-app
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
app: # required
streams: # required, producer-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
outputTopic: output_topic
extraOutputTopics:
output_role1: output_topic1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
inputTopics:
- topic1
- topic2
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/resources/pipeline-components/streams-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
inputTopics:
- topic1
- topic2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kafka-app:
app: # required
streams: # required
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
nameOverride: override-with-this-name # kafka-app-specific
imageTag: "1.0.0" # Example values that are shared between streams-app and producer-app
version: "2.12.0" # Helm chart version
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ producer-app:
app: # required
streams: # required, producer-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
outputTopic: output_topic
extraOutputTopics:
output_role1: output_topic1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ streams-app:
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
inputTopics:
- topic1
- topic2
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/resources/pipeline-defaults/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ kafka-app:
app: # required
streams: # required
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
nameOverride: override-with-this-name # kafka-app-specific
imageTag: "1.0.0" # Example values that are shared between streams-app and producer-app
version: "2.12.0" # Helm chart version
Expand Down Expand Up @@ -181,7 +181,7 @@ producer-app:
app: # required
streams: # required, producer-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
outputTopic: output_topic
extraOutputTopics:
output_role1: output_topic1
Expand All @@ -199,7 +199,7 @@ streams-app:
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${kafka_brokers} # required
schemaRegistryUrl: ${schema_registry_url}
schemaRegistryUrl: ${schema_registry.url}
inputTopics:
- topic1
- topic2
Expand Down

0 comments on commit 3a86e04

Please sign in to comment.