Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KPOps 7.0 #514

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
kafka_brokers: "http://k8kafka-cp-kafka-headless.kpops.svc.cluster.local:9092"
components_module: tests.pipeline.test_components
pipeline_base_dir: tests/pipeline
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
helm-app.yaml:
- app-helm-app.yaml
- values-helm-app.yaml
- repo_config-helm-app.yaml
kafka-app.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- app-kafka-app.yaml
- values-kafka-app.yaml
kafka-connector.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- app-kafka-connector.yaml
- config-kafka-connector.yaml
- resetter_values.yaml
kafka-sink-connector.yaml: []
kafka-source-connector.yaml:
Expand All @@ -21,9 +21,9 @@ kubernetes-app.yaml:
- from_.yaml
- to.yaml
- namespace.yaml
- app-kubernetes-app.yaml
- values-kubernetes-app.yaml
producer-app.yaml:
- from_-producer-app.yaml
- app-producer-app.yaml
- values-producer-app.yaml
streams-app.yaml:
- app-streams-app.yaml
- values-streams-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,37 @@ kpops_components_fields:
- from_
- to
- namespace
- app
- values
- repo_config
- version
kafka-app:
- name
- prefix
- from_
- to
- app
- values
kafka-connector:
- name
- prefix
- from_
- to
- app
- config
- resetter_namespace
- resetter_values
kafka-sink-connector:
- name
- prefix
- from_
- to
- app
- config
- resetter_namespace
- resetter_values
kafka-source-connector:
- name
- prefix
- from_
- to
- app
- config
- resetter_namespace
- resetter_values
- offset_topic
Expand All @@ -45,7 +45,7 @@ kpops_components_fields:
- from_
- to
- namespace
- app
- values
pipeline-component:
- name
- prefix
Expand All @@ -57,7 +57,7 @@ kpops_components_fields:
- from_
- to
- namespace
- app
- values
- repo_config
- version
streams-app:
Expand All @@ -66,7 +66,7 @@ kpops_components_fields:
- from_
- to
- namespace
- app
- values
- repo_config
- version
streams-bootstrap:
Expand All @@ -75,7 +75,7 @@ kpops_components_fields:
- from_
- to
- namespace
- app
- values
- repo_config
- version
kpops_components_inheritance_ref:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,52 +3,52 @@ helm-app.yaml:
- from_.yaml
- to.yaml
- namespace.yaml
- app-helm-app.yaml
- values-helm-app.yaml
- repo_config-helm-app.yaml
- version.yaml
kafka-app.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- app-kafka-app.yaml
- values-kafka-app.yaml
kafka-connector.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- app-kafka-connector.yaml
- config-kafka-connector.yaml
- resetter_values.yaml
kafka-sink-connector.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- app-kafka-connector.yaml
- config-kafka-connector.yaml
- resetter_values.yaml
kafka-source-connector.yaml:
- prefix.yaml
- from_-kafka-source-connector.yaml
- to.yaml
- app-kafka-connector.yaml
- config-kafka-connector.yaml
- resetter_values.yaml
- offset_topic-kafka-source-connector.yaml
kubernetes-app.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- namespace.yaml
- app-kubernetes-app.yaml
- values-kubernetes-app.yaml
producer-app.yaml:
- prefix.yaml
- from_-producer-app.yaml
- to.yaml
- namespace.yaml
- app-producer-app.yaml
- values-producer-app.yaml
- repo_config-helm-app.yaml
- version-kafka-app.yaml
streams-app.yaml:
- prefix.yaml
- from_.yaml
- to.yaml
- namespace.yaml
- app-streams-app.yaml
- values-streams-app.yaml
- repo_config-helm-app.yaml
- version-kafka-app.yaml
4 changes: 1 addition & 3 deletions docs/docs/resources/pipeline-components/helm-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
models: # SchemaProvider is initiated with the values given here
model: model
namespace: namespace # required
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example.
app: # required
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
Expand Down
4 changes: 1 addition & 3 deletions docs/docs/resources/pipeline-components/kafka-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` can contain application-specific settings, hence the user is free to
# add the key-value pairs they need.
app: # required
values: # required
streams: # required
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example. Extensive documentation on
# connectors: https://kafka.apache.org/documentation/#connectconfigs
app: # required
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
# Overriding Kafka Connect Resetter Helm values. E.g. to override the
# Image Tag etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example. Extensive documentation on
# connectors: https://kafka.apache.org/documentation/#connectconfigs
app: # required
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
# Overriding Kafka Connect Resetter Helm values. E.g. to override the
# Image Tag etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example. Extensive documentation on
# connectors: https://kafka.apache.org/documentation/#connectconfigs
app: # required
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
# Overriding Kafka Connect Resetter Helm values. E.g. to override the
# Image Tag etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
models: # SchemaProvider is initiated with the values given here
model: model
namespace: namespace # required
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example.
app: # required
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
28 changes: 9 additions & 19 deletions docs/docs/resources/pipeline-components/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
models: # SchemaProvider is initiated with the values given here
model: model
namespace: namespace # required
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example.
app: # required
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
Expand Down Expand Up @@ -107,9 +105,7 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` can contain application-specific settings, hence the user is free to
# add the key-value pairs they need.
app: # required
values: # required
streams: # required
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down Expand Up @@ -160,10 +156,8 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example. Extensive documentation on
# connectors: https://kafka.apache.org/documentation/#connectconfigs
app: # required
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
# Overriding Kafka Connect Resetter Helm values. E.g. to override the
# Image Tag etc.
Expand Down Expand Up @@ -195,10 +189,8 @@
cleanup.policy: compact
models: # SchemaProvider is initiated with the values given here
model: model
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example. Extensive documentation on
# connectors: https://kafka.apache.org/documentation/#connectconfigs
app: # required
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
# Overriding Kafka Connect Resetter Helm values. E.g. to override the
# Image Tag etc.
Expand Down Expand Up @@ -253,9 +245,7 @@
models: # SchemaProvider is initiated with the values given here
model: model
namespace: namespace # required
# `app` contains application-specific settings, hence it does not have a rigid
# structure. The fields below are just an example.
app: # required
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
Expand Down Expand Up @@ -291,7 +281,7 @@
namespace: namespace # required
# Allowed configs:
# https://github.com/bakdata/streams-bootstrap/tree/master/charts/producer-app
app: # required
values: # required
streams: # required, producer-app-specific
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down Expand Up @@ -361,7 +351,7 @@
# No arbitrary keys are allowed under `app`here
# Allowed configs:
# https://github.com/bakdata/streams-bootstrap/tree/master/charts/streams-app
app: # required
values: # required
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${config.kafka_brokers} # required
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
namespace: namespace # required
# Allowed configs:
# https://github.com/bakdata/streams-bootstrap/tree/master/charts/producer-app
app: # required
values: # required
streams: # required, producer-app-specific
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Full documentation on connectors: https://kafka.apache.org/documentation/#connectconfigs
config: # required
tasks.max: 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# `app` can contain application-specific settings, hence the user is free to
# add the key-value pairs they need.
app: # required
values: # required
streams: # required
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
values: # required
image: exampleImage # Example
debug: false # Example
commandLine: {} # Example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Allowed configs:
# https://github.com/bakdata/streams-bootstrap/tree/master/charts/producer-app
app: # required
values: # required
streams: # required, producer-app-specific
brokers: ${config.kafka_brokers} # required
schemaRegistryUrl: ${config.schema_registry.url}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# No arbitrary keys are allowed under `app`here
# Allowed configs:
# https://github.com/bakdata/streams-bootstrap/tree/master/charts/streams-app
app: # required
values: # required
# Streams Bootstrap streams section
streams: # required, streams-app-specific
brokers: ${config.kafka_brokers} # required
Expand Down
Loading
Loading