mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Thu Nov 9 11:45:52 UTC 2023
This commit is contained in:
parent
f2c5d1d45f
commit
03f0979970
300 changed files with 8569 additions and 1319 deletions
|
|
@ -14,6 +14,7 @@ SYNOPSIS
|
|||
[--control-plane-shared-deployment-policy=CONTROL_PLANE_SHARED_DEPLOYMENT_POLICY]
|
||||
[--default-max-pods-per-node=DEFAULT_MAX_PODS_PER_NODE]
|
||||
[--external-lb-ipv4-address-pools=[EXTERNAL_LB_IPV4_ADDRESS,...]]
|
||||
[--external-lb-ipv6-address-pools=[EXTERNAL_LB_IPV6_ADDRESS,...]]
|
||||
[--fleet-project=FLEET_PROJECT] [--labels=[KEY=VALUE,...]]
|
||||
[--lro-timeout=LRO_TIMEOUT]
|
||||
[--maintenance-window-end=MAINTENANCE_WINDOW_END]
|
||||
|
|
@ -130,6 +131,17 @@ FLAGS
|
|||
address pools, for example: --external-lb-ipv4-address-pools
|
||||
10.0.0.1-10.0.0.10,10.0.0.1/24
|
||||
|
||||
--external-lb-ipv6-address-pools=[EXTERNAL_LB_IPV6_ADDRESS,...]
|
||||
IPv6 address pools that are used for data plane load balancing of local
|
||||
control plane clusters. Existing pools cannot be updated after cluster
|
||||
creation; only adding new pools is allowed. Each address pool must be
|
||||
specified as one of the following two types of values: 1. A IPv6
|
||||
address range, for example, "2001:db8::1-2001:db8::a". A range that
|
||||
contains a single IP (e.g. "2001:db8::1-2001:db8::1") is allowed. 2. A
|
||||
IPv6 CIDR block, for example, "2001:db8::/120" Use comma when
|
||||
specifying multiple address pools, for example:
|
||||
--external-lb-ipv6-address-pools 2001:db8::1-2001:db8::a,2001:db8::/120
|
||||
|
||||
--fleet-project=FLEET_PROJECT
|
||||
Name of the Fleet host project where the cluster is registered.
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,9 @@ COMMANDS
|
|||
update
|
||||
(ALPHA) Update an Edge Container cluster.
|
||||
|
||||
upgrade
|
||||
(ALPHA) Upgrade an Edge Container cluster.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
|
|
|
|||
77
gcloud/alpha/edge-cloud/container/clusters/upgrade
Normal file
77
gcloud/alpha/edge-cloud/container/clusters/upgrade
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
NAME
|
||||
gcloud alpha edge-cloud container clusters upgrade - upgrade an Edge
|
||||
Container cluster
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha edge-cloud container clusters upgrade
|
||||
(CLUSTER : --location=LOCATION) --schedule=SCHEDULE --version=VERSION
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Upgrade an Edge Container cluster.
|
||||
|
||||
EXAMPLES
|
||||
To upgrade an Edge Container cluster to 1.5.1 immediately, run:
|
||||
|
||||
$ gcloud alpha edge-cloud container clusters upgrade my-cluster \
|
||||
--version=1.5.1 --schedule=IMMEDIATELY
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Cluster resource - Edge Container cluster to upgrade. The arguments in
|
||||
this group can be used to specify the attributes of this resource. (NOTE)
|
||||
Some attributes are not given arguments in this group but can be set in
|
||||
other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument cluster on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
CLUSTER
|
||||
ID of the cluster or fully qualified identifier for the cluster.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument cluster on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the cluster.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument cluster on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--schedule=SCHEDULE
|
||||
Schedule to upgrade a cluster after the request is acknowledged by
|
||||
Google. Support values: IMMEDIATELY.
|
||||
|
||||
--version=VERSION
|
||||
Target cluster version to upgrade to. For example: "1.5.1".
|
||||
|
||||
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.
|
||||
|
||||
API REFERENCE
|
||||
This command uses the edgecontainer/v1alpha API. The full documentation for
|
||||
this API can be found at: https://cloud.google.com/edge-cloud
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud edge-cloud container clusters upgrade
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue