Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Oct 26, 2023
1 parent 9a7352f commit 52ec86f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/user/references/cli-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ $ kpops generate [OPTIONS] PIPELINE_PATH [COMPONENTS_MODULE]
* `--pipeline-base-dir DIRECTORY`: Base directory to the pipelines (default is current working directory) [env var: KPOPS_PIPELINE_BASE_DIR; default: .]
* `--defaults DIRECTORY`: Path to defaults folder [env var: KPOPS_DEFAULT_PATH]
* `--config FILE`: Path to the config.yaml file [env var: KPOPS_CONFIG_PATH; default: config.yaml]
* `--template / --no-template`: Render component templates, e.g. Kubernetes manifest [default: no-template]
* `--template / --no-template`: Render component templates, e.g. Kubernetes manifests. [default: no-template]
* `--steps TEXT`: Comma separated list of steps to apply the command on [env var: KPOPS_PIPELINE_STEPS]
* `--filter-type [include|exclude]`: Whether the --steps option should include/exclude the steps [default: include]
* `--verbose / --no-verbose`: Enable verbose printing [default: no-verbose]
Expand Down
2 changes: 1 addition & 1 deletion kpops/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def generate(
config: Path = CONFIG_PATH_OPTION,
template: bool = typer.Option(
False,
help="Render component templates, e.g. Kubernetes manifest",
help="Render component templates, e.g. Kubernetes manifests.",
),
steps: Optional[str] = PIPELINE_STEPS,
filter_type: FilterType = FILTER_TYPE,
Expand Down

0 comments on commit 52ec86f

Please sign in to comment.