mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 16:37:00 +00:00
gcloud: Wed Mar 9 08:39:30 UTC 2022
This commit is contained in:
parent
5829e94e90
commit
7d82d0fc32
210 changed files with 7192 additions and 887 deletions
74
gcloud/beta/container/fleet/cloudrun/apply
Normal file
74
gcloud/beta/container/fleet/cloudrun/apply
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
NAME
|
||||
gcloud beta container fleet cloudrun apply - deploy or update the CloudRun
|
||||
feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta container fleet cloudrun apply
|
||||
(--gke-cluster=LOCATION/CLUSTER_NAME | --gke-uri=GKE_URI
|
||||
| [--context=CONTEXT : --kubeconfig=KUBECONFIG]) [--config=CONFIG]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Deploy or update a user-specified config file of the CloudRun custom
|
||||
resource. The config file should be a YAML file.
|
||||
|
||||
EXAMPLES
|
||||
To apply the CloudRun YAML file, run:
|
||||
|
||||
$ gcloud beta container fleet cloudrun apply \
|
||||
--kubeconfig=/path/to/kubeconfig \
|
||||
--config=/path/to/cloud-run-cr.yaml
|
||||
|
||||
REQUIRED FLAGS
|
||||
Cluster identifier.
|
||||
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--gke-cluster=LOCATION/CLUSTER_NAME
|
||||
The location/name of the GKE cluster. The location can be a zone or a
|
||||
region for e.g us-central1-a/my-cluster.
|
||||
|
||||
--gke-uri=GKE_URI
|
||||
The URI of a GKE cluster that you want to register to Hub; for
|
||||
example,
|
||||
'https://container.googleapis.com/v1/projects/my-project/locations/us-central1-a/clusters/my-cluster'.
|
||||
To obtain the URI, you can run 'gcloud container clusters list
|
||||
--uri'. Note that this should only be provided if the cluster being
|
||||
registered is a GKE cluster. The service will validate the provided
|
||||
URI to confirm that it maps to a valid GKE cluster."
|
||||
|
||||
Non-GKE cluster identifier.
|
||||
|
||||
--context=CONTEXT
|
||||
The cluster context as it appears in the kubeconfig file. You can
|
||||
get this value from the command line by running command: kubectl
|
||||
config current-context.
|
||||
|
||||
This flag must be specified if any of the other arguments in this
|
||||
group are specified.
|
||||
|
||||
--kubeconfig=KUBECONFIG
|
||||
The kubeconfig file containing an entry for the cluster. Defaults
|
||||
to $KUBECONFIG if it is set in the environment, otherwise defaults
|
||||
to $HOME/.kube/config.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--config=CONFIG
|
||||
The path to CloudRun custom resource config file.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud container fleet cloudrun apply
|
||||
|
||||
$ gcloud alpha container fleet cloudrun apply
|
||||
|
||||
29
gcloud/beta/container/fleet/cloudrun/describe
Normal file
29
gcloud/beta/container/fleet/cloudrun/describe
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
NAME
|
||||
gcloud beta container fleet cloudrun describe - describe the status of the
|
||||
CloudRun feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta container fleet cloudrun describe [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
EXAMPLES
|
||||
To get the detailed current status of the CloudRun Feature in Anthos
|
||||
clusters, run:
|
||||
|
||||
$ gcloud beta container fleet cloudrun describe
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud container fleet cloudrun describe
|
||||
|
||||
$ gcloud alpha container fleet cloudrun describe
|
||||
|
||||
36
gcloud/beta/container/fleet/cloudrun/disable
Normal file
36
gcloud/beta/container/fleet/cloudrun/disable
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
NAME
|
||||
gcloud beta container fleet cloudrun disable - disable the CloudRun feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta container fleet cloudrun disable [--force]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This command disables the CloudRun feature in Anthos clusters.
|
||||
|
||||
EXAMPLES
|
||||
To disable the CloudRun Feature, run:
|
||||
|
||||
$ gcloud beta container fleet cloudrun disable
|
||||
|
||||
FLAGS
|
||||
--force
|
||||
Disable this feature, even if it is currently in use. Force disablement
|
||||
may result in unexpected behavior.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud container fleet cloudrun disable
|
||||
|
||||
$ gcloud alpha container fleet cloudrun disable
|
||||
|
||||
30
gcloud/beta/container/fleet/cloudrun/enable
Normal file
30
gcloud/beta/container/fleet/cloudrun/enable
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
NAME
|
||||
gcloud beta container fleet cloudrun enable - enable the CloudRun feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta container fleet cloudrun enable [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) This command enables the CloudRun feature in Anthos clusters.
|
||||
|
||||
EXAMPLES
|
||||
To enable the CloudRun Feature, run:
|
||||
|
||||
$ gcloud beta container fleet cloudrun enable
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud container fleet cloudrun enable
|
||||
|
||||
$ gcloud alpha container fleet cloudrun enable
|
||||
|
||||
37
gcloud/beta/container/fleet/cloudrun/help
Normal file
37
gcloud/beta/container/fleet/cloudrun/help
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
NAME
|
||||
gcloud beta container fleet cloudrun - manage the CloudRun feature
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta container fleet cloudrun COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Manage the CloudRun feature.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
apply
|
||||
(BETA) Deploy or update the CloudRun feature.
|
||||
|
||||
describe
|
||||
(BETA) Describe the status of the CloudRun feature.
|
||||
|
||||
disable
|
||||
(BETA) Disable the CloudRun feature.
|
||||
|
||||
enable
|
||||
(BETA) Enable the CloudRun feature.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. These
|
||||
variants are also available:
|
||||
|
||||
$ gcloud container fleet cloudrun
|
||||
|
||||
$ gcloud alpha container fleet cloudrun
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue