-
Notifications
You must be signed in to change notification settings - Fork 224
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
1 parent
509ee7d
commit e363542
Showing
35 changed files
with
281 additions
and
47 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
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
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,42 @@ | ||
--- | ||
title: "esc env clone" | ||
--- | ||
|
||
|
||
|
||
Clone an existing environment into a new environment. | ||
|
||
## Synopsis | ||
|
||
Clone an existing environment into a new environment. | ||
|
||
This command clones an existing environment with the given identifier into a new environment. | ||
If a project is omitted from the new environment identifier the new environment will be created | ||
within the same project as the environment being cloned. | ||
|
||
|
||
``` | ||
esc env clone [<org-name>/]<src-project-name>/<src-environment-name> [<dest-project-name>/]<dest-environment-name> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for clone | ||
--preserve-access preserve the same team access on the environment being cloned | ||
--preserve-env-tags preserve any tags on the environment being cloned | ||
--preserve-history preserve history of the environment being cloned | ||
--preserve-rev-tags preserve any tags on the environment revisions being cloned | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--env string The name of the environment to operate on. | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [esc env](/docs/esc-cli/commands/esc_env/) - Manage environments | ||
|
||
###### Auto generated by spf13/cobra on 12-Sep-2024 |
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
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,42 @@ | ||
--- | ||
title: "esc env tag" | ||
--- | ||
|
||
|
||
|
||
Manage environment tags | ||
|
||
## Synopsis | ||
|
||
Manage environment tags | ||
|
||
This command creates a tag with the given name on the specified environment. | ||
|
||
Subcommands exist for reading, listing, updating, and removing tags. | ||
|
||
``` | ||
esc env tag [<org-name>/][<project-name>/]<environment-name> <name> <value> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for tag | ||
--utc display times in UTC | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--env string The name of the environment to operate on. | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [esc env](/docs/esc-cli/commands/esc_env/) - Manage environments | ||
* [esc env tag get](/docs/esc-cli/commands/esc_env_tag_get/) - Get an environment tag | ||
* [esc env tag ls](/docs/esc-cli/commands/esc_env_tag_ls/) - List environment tags. | ||
* [esc env tag mv](/docs/esc-cli/commands/esc_env_tag_mv/) - Move an environment tag | ||
* [esc env tag rm](/docs/esc-cli/commands/esc_env_tag_rm/) - Remove an environment tag. | ||
|
||
###### Auto generated by spf13/cobra on 12-Sep-2024 |
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,36 @@ | ||
--- | ||
title: "esc env tag get" | ||
--- | ||
|
||
|
||
|
||
Get an environment tag | ||
|
||
## Synopsis | ||
|
||
Get an environment tag | ||
|
||
This command get a tag with the given name on the specified environment. | ||
|
||
``` | ||
esc env tag get [<org-name>/][<project-name>/]<environment-name> <name> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for get | ||
--utc display times in UTC | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--env string The name of the environment to operate on. | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [esc env tag](/docs/esc-cli/commands/esc_env_tag/) - Manage environment tags | ||
|
||
###### Auto generated by spf13/cobra on 12-Sep-2024 |
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,38 @@ | ||
--- | ||
title: "esc env tag ls" | ||
--- | ||
|
||
|
||
|
||
List environment tags. | ||
|
||
## Synopsis | ||
|
||
List environment tags | ||
|
||
This command lists an environment's tags. | ||
|
||
|
||
``` | ||
esc env tag ls [<org-name>/][<project-name>/]<environment-name> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for ls | ||
--pager string the command to use to page through the environment's version tags | ||
--utc display times in UTC | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--env string The name of the environment to operate on. | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [esc env tag](/docs/esc-cli/commands/esc_env_tag/) - Manage environment tags | ||
|
||
###### Auto generated by spf13/cobra on 12-Sep-2024 |
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,37 @@ | ||
--- | ||
title: "esc env tag mv" | ||
--- | ||
|
||
|
||
|
||
Move an environment tag | ||
|
||
## Synopsis | ||
|
||
Move an environment tag | ||
|
||
This command updates a tag with the given name on the specified environment, changing it's name. | ||
|
||
|
||
``` | ||
esc env tag mv [<org-name>/][<project-name>/]<environment-name> <name> <new-name> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for mv | ||
--utc display times in UTC | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--env string The name of the environment to operate on. | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [esc env tag](/docs/esc-cli/commands/esc_env_tag/) - Manage environment tags | ||
|
||
###### Auto generated by spf13/cobra on 12-Sep-2024 |
Oops, something went wrong.