From 52ec86f7f35841673040f3a6899ce5edb199a422 Mon Sep 17 00:00:00 2001 From: Salomon Popp Date: Thu, 26 Oct 2023 13:47:47 +0200 Subject: [PATCH] Update docs --- docs/docs/user/references/cli-commands.md | 2 +- kpops/cli/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/user/references/cli-commands.md b/docs/docs/user/references/cli-commands.md index eef7a997d..2221a1fd8 100644 --- a/docs/docs/user/references/cli-commands.md +++ b/docs/docs/user/references/cli-commands.md @@ -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] diff --git a/kpops/cli/main.py b/kpops/cli/main.py index f94930c1a..021b5f0e5 100644 --- a/kpops/cli/main.py +++ b/kpops/cli/main.py @@ -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,