Skip to content

Commit

Permalink
Deployed 2d4d83e to dev with MkDocs 1.5.3 and mike 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bakdata-bot committed Nov 8, 2023
1 parent d90da5f commit 4bd7093
Show file tree
Hide file tree
Showing 10 changed files with 437 additions and 279 deletions.
2 changes: 1 addition & 1 deletion dev/resources/variables/cli_env_vars.env
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ KPOPS_PIPELINE_BASE_DIR=.
KPOPS_CONFIG_PATH=config.yaml
# Path to defaults folder
KPOPS_DEFAULT_PATH # No default value, not required
# Path to dotenv file. Multiple files can be provided. The files will
# Path to dotenvfile. Multiple files can be provided. The files will
# be loaded in order, with each file overriding the previous one.
KPOPS_DOTENV_PATH # No default value, not required
# Path to YAML with pipeline definition
Expand Down
2 changes: 1 addition & 1 deletion dev/resources/variables/cli_env_vars/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ <h1>Cli env vars</h1>
<td>KPOPS_DOTENV_PATH</td>
<td></td>
<td>False</td>
<td>Path to dotenv file. Multiple files can be provided. The files will be loaded in order, with each file overriding the previous one.</td>
<td>Path to dotenvfile. Multiple files can be provided. The files will be loaded in order, with each file overriding the previous one.</td>
</tr>
<tr>
<td>KPOPS_PIPELINE_PATH</td>
Expand Down
63 changes: 37 additions & 26 deletions dev/resources/variables/config_env_vars.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,47 +8,58 @@
# The path to the folder containing the defaults.yaml file and the
# environment defaults files. Paths can either be absolute or relative
# to `config.yaml`
defaults_path=.
KPOPS_DEFAULTS_PATH=.
# environment
# The environment you want to generate and deploy the pipeline to.
# Suffix your environment files with this value (e.g.
# defaults_development.yaml for environment=development).
environment=PydanticUndefined
KPOPS_ENVIRONMENT # No default value, required
# kafka_brokers
# The comma separated Kafka brokers address.
kafka_brokers=PydanticUndefined
KPOPS_KAFKA_BROKERS # No default value, required
# defaults_filename_prefix
# The name of the defaults file and the prefix of the defaults
# environment file.
defaults_filename_prefix=defaults
# topic_name_config
# Configure the topic name variables you can use in the pipeline
# definition.
topic_name_config=default_output_topic_name='${pipeline_name}-${component_name}' default_error_topic_name='${pipeline_name}-${component_name}-error'
# schema_registry
# Configuration for Schema Registry.
schema_registry=enabled=False url=Url('http://localhost:8081/')
# kafka_rest
# Configuration for Kafka REST Proxy.
kafka_rest=url=Url('http://localhost:8082/')
# kafka_connect
# Configuration for Kafka Connect.
kafka_connect=url=Url('http://localhost:8083/')
KPOPS_DEFAULTS_FILENAME_PREFIX=defaults
# topic_name_config.default_output_topic_name
# Configures the value for the variable ${output_topic_name}
KPOPS_TOPIC_NAME_CONFIG__DEFAULT_OUTPUT_TOPIC_NAME=${pipeline_name}-${component_name}
# topic_name_config.default_error_topic_name
# Configures the value for the variable ${error_topic_name}
KPOPS_TOPIC_NAME_CONFIG__DEFAULT_ERROR_TOPIC_NAME=${pipeline_name}-${component_name}-error
# schema_registry.enabled
# Whether the Schema Registry handler should be initialized.
KPOPS_SCHEMA_REGISTRY__ENABLED=False
# schema_registry.url
# Address of the Schema Registry.
KPOPS_SCHEMA_REGISTRY__URL=http://localhost:8081/
# kafka_rest.url
# Address of the Kafka REST Proxy.
KPOPS_KAFKA_REST__URL=http://localhost:8082/
# kafka_connect.url
# Address of Kafka Connect.
KPOPS_KAFKA_CONNECT__URL=http://localhost:8083/
# timeout
# The timeout in seconds that specifies when actions like deletion or
# deploy timeout.
timeout=300
KPOPS_TIMEOUT=300
# create_namespace
# Flag for `helm upgrade --install`. Create the release namespace if
# not present.
create_namespace=False
# helm_config
# Global flags for Helm.
helm_config=context=None debug=False api_version=None
# helm_diff_config
# Configure Helm Diff.
helm_diff_config=ignore=set()
KPOPS_CREATE_NAMESPACE=False
# helm_config.context
# Name of kubeconfig context (`--kube-context`)
KPOPS_HELM_CONFIG__CONTEXT # No default value, not required
# helm_config.debug
# Run Helm in Debug mode
KPOPS_HELM_CONFIG__DEBUG=False
# helm_config.api_version
# Kubernetes API version used for Capabilities.APIVersions
KPOPS_HELM_CONFIG__API_VERSION # No default value, not required
# helm_diff_config.ignore
# Set of keys that should not be checked.
KPOPS_HELM_DIFF_CONFIG__IGNORE # No default value, required
# retain_clean_jobs
# Whether to retain clean up jobs in the cluster or uninstall the,
# after completion.
retain_clean_jobs=False
KPOPS_RETAIN_CLEAN_JOBS=False
98 changes: 63 additions & 35 deletions dev/resources/variables/config_env_vars/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1442,91 +1442,119 @@ <h1>Config env vars</h1>
</thead>
<tbody>
<tr>
<td>defaults_path</td>
<td>KPOPS_DEFAULTS_PATH</td>
<td>.</td>
<td>False</td>
<td>The path to the folder containing the defaults.yaml file and the environment defaults files. Paths can either be absolute or relative to <code>config.yaml</code></td>
<td>defaults_path</td>
</tr>
<tr>
<td>environment</td>
<td>PydanticUndefined</td>
<td>False</td>
<td>KPOPS_ENVIRONMENT</td>
<td></td>
<td>True</td>
<td>The environment you want to generate and deploy the pipeline to. Suffix your environment files with this value (e.g. defaults_development.yaml for environment=development).</td>
<td>environment</td>
</tr>
<tr>
<td>kafka_brokers</td>
<td>PydanticUndefined</td>
<td>False</td>
<td>KPOPS_KAFKA_BROKERS</td>
<td></td>
<td>True</td>
<td>The comma separated Kafka brokers address.</td>
<td>kafka_brokers</td>
</tr>
<tr>
<td>defaults_filename_prefix</td>
<td>KPOPS_DEFAULTS_FILENAME_PREFIX</td>
<td>defaults</td>
<td>False</td>
<td>The name of the defaults file and the prefix of the defaults environment file.</td>
<td>defaults_filename_prefix</td>
</tr>
<tr>
<td>topic_name_config</td>
<td>default_output_topic_name='${pipeline_name}-${component_name}' default_error_topic_name='${pipeline_name}-${component_name}-error'</td>
<td>KPOPS_TOPIC_NAME_CONFIG__DEFAULT_OUTPUT_TOPIC_NAME</td>
<td>${pipeline_name}-${component_name}</td>
<td>False</td>
<td>Configure the topic name variables you can use in the pipeline definition.</td>
<td>topic_name_config</td>
<td>Configures the value for the variable ${output_topic_name}</td>
<td>topic_name_config.default_output_topic_name</td>
</tr>
<tr>
<td>schema_registry</td>
<td>enabled=False url=Url('http://localhost:8081/')</td>
<td>KPOPS_TOPIC_NAME_CONFIG__DEFAULT_ERROR_TOPIC_NAME</td>
<td>${pipeline_name}-${component_name}-error</td>
<td>False</td>
<td>Configuration for Schema Registry.</td>
<td>schema_registry</td>
<td>Configures the value for the variable ${error_topic_name}</td>
<td>topic_name_config.default_error_topic_name</td>
</tr>
<tr>
<td>kafka_rest</td>
<td>url=Url('http://localhost:8082/')</td>
<td>KPOPS_SCHEMA_REGISTRY__ENABLED</td>
<td>False</td>
<td>Configuration for Kafka REST Proxy.</td>
<td>kafka_rest</td>
<td>False</td>
<td>Whether the Schema Registry handler should be initialized.</td>
<td>schema_registry.enabled</td>
</tr>
<tr>
<td>kafka_connect</td>
<td>url=Url('http://localhost:8083/')</td>
<td>KPOPS_SCHEMA_REGISTRY__URL</td>
<td>http://localhost:8081/</td>
<td>False</td>
<td>Configuration for Kafka Connect.</td>
<td>kafka_connect</td>
<td>Address of the Schema Registry.</td>
<td>schema_registry.url</td>
</tr>
<tr>
<td>timeout</td>
<td>KPOPS_KAFKA_REST__URL</td>
<td>http://localhost:8082/</td>
<td>False</td>
<td>Address of the Kafka REST Proxy.</td>
<td>kafka_rest.url</td>
</tr>
<tr>
<td>KPOPS_KAFKA_CONNECT__URL</td>
<td>http://localhost:8083/</td>
<td>False</td>
<td>Address of Kafka Connect.</td>
<td>kafka_connect.url</td>
</tr>
<tr>
<td>KPOPS_TIMEOUT</td>
<td>300</td>
<td>False</td>
<td>The timeout in seconds that specifies when actions like deletion or deploy timeout.</td>
<td>timeout</td>
</tr>
<tr>
<td>create_namespace</td>
<td>KPOPS_CREATE_NAMESPACE</td>
<td>False</td>
<td>False</td>
<td>Flag for <code>helm upgrade --install</code>. Create the release namespace if not present.</td>
<td>create_namespace</td>
</tr>
<tr>
<td>helm_config</td>
<td>context=None debug=False api_version=None</td>
<td>KPOPS_HELM_CONFIG__CONTEXT</td>
<td></td>
<td>False</td>
<td>Global flags for Helm.</td>
<td>helm_config</td>
<td>Name of kubeconfig context (<code>--kube-context</code>)</td>
<td>helm_config.context</td>
</tr>
<tr>
<td>helm_diff_config</td>
<td>ignore=set()</td>
<td>KPOPS_HELM_CONFIG__DEBUG</td>
<td>False</td>
<td>False</td>
<td>Configure Helm Diff.</td>
<td>helm_diff_config</td>
<td>Run Helm in Debug mode</td>
<td>helm_config.debug</td>
</tr>
<tr>
<td>retain_clean_jobs</td>
<td>KPOPS_HELM_CONFIG__API_VERSION</td>
<td></td>
<td>False</td>
<td>Kubernetes API version used for Capabilities.APIVersions</td>
<td>helm_config.api_version</td>
</tr>
<tr>
<td>KPOPS_HELM_DIFF_CONFIG__IGNORE</td>
<td></td>
<td>True</td>
<td>Set of keys that should not be checked.</td>
<td>helm_diff_config.ignore</td>
</tr>
<tr>
<td>KPOPS_RETAIN_CLEAN_JOBS</td>
<td>False</td>
<td>False</td>
<td>Whether to retain clean up jobs in the cluster or uninstall the, after completion.</td>
Expand Down
Loading

0 comments on commit 4bd7093

Please sign in to comment.