From 18faf80b570d4887d88e93ead665da1859c95adf Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Apr 2021 23:04:53 +0000 Subject: [PATCH] chore: regenerated plugin docs --- .../reference/jx/application/_index.md | 34 ++----------- .../reference/jx/application/get/_index.md | 51 +++++++++++++++++++ .../jx/application/version/_index.md | 7 --- 3 files changed, 55 insertions(+), 37 deletions(-) create mode 100644 content/en/v3/develop/reference/jx/application/get/_index.md diff --git a/content/en/v3/develop/reference/jx/application/_index.md b/content/en/v3/develop/reference/jx/application/_index.md index ee0854444b9..b9fe0984bbe 100644 --- a/content/en/v3/develop/reference/jx/application/_index.md +++ b/content/en/v3/develop/reference/jx/application/_index.md @@ -2,7 +2,7 @@ title: jx application linktitle: application type: docs -description: "command for viewing deployed Applications across Environments ***Aliases**: application,version,versions*" +description: "Command for viewing deployed Applications across Environments" aliases: - jx-application --- @@ -15,40 +15,14 @@ jx application ### Synopsis -Display applications across environments. - -### Examples - - ```bash - # List applications, their URL and pod counts for all environments - jx get applications - - # List applications only in the Staging environment - jx get applications -e staging - - # List applications only in the Production environment - jx get applications -e production - - # List applications only in a specific namespace - jx get applications -n jx-staging - - # List applications hiding the URLs - jx get applications -u - - # List applications just showing the versions (hiding urls and pod counts) - jx get applications -u -p - - ``` +Command for viewing deployed Applications across Environments + ### Options ``` -b, --batch-mode Runs in batch mode without prompting for user input - -e, --env string Filter applications in the given environment -h, --help help for jx-application - -n, --namespace string Filter applications in the given namespace - -p, --pod Hide the pod counts - -w, --preview Show preview environments only - -u, --url Hide the URLs + --log-level string Sets the logging level. If not specified defaults to $JX_LOG_LEVEL --verbose Enables verbose output. The environment variable JX_LOG_LEVEL has precedence over this flag and allows setting the logging level to any value of: panic, fatal, error, warn, info, debug, trace ``` diff --git a/content/en/v3/develop/reference/jx/application/get/_index.md b/content/en/v3/develop/reference/jx/application/get/_index.md new file mode 100644 index 00000000000..191a84cf5b5 --- /dev/null +++ b/content/en/v3/develop/reference/jx/application/get/_index.md @@ -0,0 +1,51 @@ +--- +title: jx application get +linktitle: get +type: docs +description: "Display one or more Applications and their versions ***Aliases**: applications,apps*" +aliases: + - jx-application_get +--- + +### Usage + +``` +jx application get application +``` + +### Synopsis + +Display applications across environments. + +### Examples + + ```bash + # List applications, their URL and pod counts for all environments + jx get applications + # List applications only in the Staging environment + jx get applications -e staging + # List applications only in the Production environment + jx get applications -e production + # List applications only in a specific namespace + jx get applications -n jx-staging + # List applications hiding the URLs + jx get applications -u + # List applications just showing the versions (hiding urls and pod counts) + jx get applications -u -p + + ``` +### Options + +``` + -e, --env string Filter applications in the given environment + -h, --help help for get + -n, --namespace string Filter applications in the given namespace + -p, --pod Hide the pod counts + -u, --url Hide the URLs +``` + + + +### Source + +[jenkins-x-plugins/jx-application](https://github.com/jenkins-x-plugins/jx-application) diff --git a/content/en/v3/develop/reference/jx/application/version/_index.md b/content/en/v3/develop/reference/jx/application/version/_index.md index c3061aab455..5600113fd4b 100644 --- a/content/en/v3/develop/reference/jx/application/version/_index.md +++ b/content/en/v3/develop/reference/jx/application/version/_index.md @@ -23,13 +23,6 @@ Displays the version of this command -h, --help help for version ``` -### Options inherited from parent commands - -``` - -b, --batch-mode Runs in batch mode without prompting for user input - --verbose Enables verbose output. The environment variable JX_LOG_LEVEL has precedence over this flag and allows setting the logging level to any value of: panic, fatal, error, warn, info, debug, trace -``` - ### Source