From e2037e12c3265d7647f8eb372b96bc0f3086e936 Mon Sep 17 00:00:00 2001 From: antedotee Date: Sat, 7 Feb 2026 18:04:55 +0530 Subject: [PATCH 1/3] added ECS to the printed allowed values for --app-kind Signed-off-by: antedotee --- docs/content/en/docs-dev/user-guide/command-line-tool.md | 5 ++++- pkg/app/pipectl/cmd/application/add.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/content/en/docs-dev/user-guide/command-line-tool.md b/docs/content/en/docs-dev/user-guide/command-line-tool.md index e0c0de5746..696d5a0eea 100644 --- a/docs/content/en/docs-dev/user-guide/command-line-tool.md +++ b/docs/content/en/docs-dev/user-guide/command-line-tool.md @@ -193,7 +193,7 @@ Usage: Flags: --app-dir string The relative path from the root of repository to the application directory. - --app-kind string The kind of application. (KUBERNETES|TERRAFORM|LAMBDA|CLOUDRUN) + --app-kind string The kind of application. (KUBERNETES|TERRAFORM|LAMBDA|CLOUDRUN|ECS) --app-name string The application name. --platform-provider string The platform provider name. One of the registered providers in the piped configuration. The previous name of this field is cloud-provider. --config-file-name string The configuration file name. (default "app.pipecd.yaml") @@ -355,6 +355,9 @@ You can encrypt it the same way you do [from the web](../managing-application/se --input-file={PATH_TO_SECRET_FILE} ``` +Optional encoding: +- `--use-base64-encoding` to base64-encode the plaintext before encrypting. + Note: The docs for pipectl available command is maybe outdated, we suggest users use the `help` command for the updated usage while using pipectl. ### Generating an application config (app.pipecd.yaml) diff --git a/pkg/app/pipectl/cmd/application/add.go b/pkg/app/pipectl/cmd/application/add.go index 26e25badd1..6db5c2c4b0 100644 --- a/pkg/app/pipectl/cmd/application/add.go +++ b/pkg/app/pipectl/cmd/application/add.go @@ -51,7 +51,7 @@ func newAddCommand(root *command) *cobra.Command { } cmd.Flags().StringVar(&c.appName, "app-name", c.appName, "The application name.") - cmd.Flags().StringVar(&c.appKind, "app-kind", c.appKind, "The kind of application. (KUBERNETES|TERRAFORM|LAMBDA|CLOUDRUN)") + cmd.Flags().StringVar(&c.appKind, "app-kind", c.appKind, "The kind of application. (KUBERNETES|TERRAFORM|LAMBDA|CLOUDRUN|ECS)") cmd.Flags().StringVar(&c.pipedID, "piped-id", c.pipedID, "The ID of piped that should handle this application.") cmd.Flags().StringVar(&c.platformProvider, "platform-provider", c.platformProvider, "The platform provider name. One of the registered providers in the piped configuration. Previous name of this field is cloud-provider.") From 87224f90dc05b8982ccdf584bf18718e1a0f5fb1 Mon Sep 17 00:00:00 2001 From: antedotee Date: Sat, 7 Feb 2026 18:07:14 +0530 Subject: [PATCH 2/3] mistakenly added Signed-off-by: antedotee --- docs/content/en/docs-dev/user-guide/command-line-tool.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/content/en/docs-dev/user-guide/command-line-tool.md b/docs/content/en/docs-dev/user-guide/command-line-tool.md index 696d5a0eea..bd63b3370b 100644 --- a/docs/content/en/docs-dev/user-guide/command-line-tool.md +++ b/docs/content/en/docs-dev/user-guide/command-line-tool.md @@ -355,8 +355,6 @@ You can encrypt it the same way you do [from the web](../managing-application/se --input-file={PATH_TO_SECRET_FILE} ``` -Optional encoding: -- `--use-base64-encoding` to base64-encode the plaintext before encrypting. Note: The docs for pipectl available command is maybe outdated, we suggest users use the `help` command for the updated usage while using pipectl. From c1f83af98091e9a21498e47b4efd637305db539c Mon Sep 17 00:00:00 2001 From: ky505 <151192805+antedotee@users.noreply.github.com> Date: Sat, 7 Feb 2026 18:09:53 +0530 Subject: [PATCH 3/3] Update note on pipectl command documentation Clarify documentation regarding pipectl command usage. Signed-off-by: ky505 <151192805+antedotee@users.noreply.github.com> --- docs/content/en/docs-dev/user-guide/command-line-tool.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/content/en/docs-dev/user-guide/command-line-tool.md b/docs/content/en/docs-dev/user-guide/command-line-tool.md index bd63b3370b..447681cdbd 100644 --- a/docs/content/en/docs-dev/user-guide/command-line-tool.md +++ b/docs/content/en/docs-dev/user-guide/command-line-tool.md @@ -355,7 +355,6 @@ You can encrypt it the same way you do [from the web](../managing-application/se --input-file={PATH_TO_SECRET_FILE} ``` - Note: The docs for pipectl available command is maybe outdated, we suggest users use the `help` command for the updated usage while using pipectl. ### Generating an application config (app.pipecd.yaml)