-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
75 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
These variables are a lower priority alternative to the commands' flags. If a variable is set, the corresponding flag does not have to be specified in commands. Variables marked as required can instead be set as flags. | ||
|
||
| Name |Default Value|Required| Description | | ||
|-----------------------|-------------|--------|-----------------------------------------------------------------------------------------------------------------------------------| | ||
|KPOPS_PIPELINE_BASE_DIR|. |False |Base directory to the pipelines (default is current working directory) | | ||
|KPOPS_CONFIG_PATH |. |False |Path to the dir containing config.yaml files | | ||
|KPOPS_DEFAULT_PATH | |False |Path to defaults folder | | ||
|KPOPS_DOTENV_PATH | |False |Path to dotenv file. Multiple files can be provided. The files will be loaded in order, with each file overriding the previous one.| | ||
|KPOPS_PIPELINE_PATH | |True |Path to YAML with pipeline definition | | ||
|KPOPS_PIPELINE_STEPS | |False |Comma separated list of steps to apply the command on | | ||
| Name |Default Value|Required| Description | | ||
|-----------------------|-------------|--------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
|KPOPS_PIPELINE_BASE_DIR|. |False |Base directory to the pipelines (default is current working directory) | | ||
|KPOPS_CONFIG_PATH |. |False |Path to the dir containing config.yaml files | | ||
|KPOPS_DEFAULT_PATH | |False |Path to defaults folder | | ||
|KPOPS_DOTENV_PATH | |False |Path to dotenv file. Multiple files can be provided. The files will be loaded in order, with each file overriding the previous one. | | ||
|KPOPS_ENVIRONMENT | |False |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). To be defined only in the default config definition, i.e. `config.yaml`.| | ||
|KPOPS_PIPELINE_PATH | |True |Path to YAML with pipeline definition | | ||
|KPOPS_PIPELINE_STEPS | |False |Comma separated list of steps to apply the command on | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
KPOPS_environment="no_env" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
environment: "correct" | ||
schema_registry: | ||
enabled: true | ||
url: "http://correct:8081" | ||
url: "http://env:8081" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
schema_registry: | ||
enabled: true | ||
url: "http://noenv:8081" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters