1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-16 12:22:03 +00:00

gcloud: Wed May 24 10:23:00 UTC 2023

This commit is contained in:
Automated 2023-05-24 10:23:00 +00:00
parent a56fab68e5
commit d0919dce4f
151 changed files with 3286 additions and 306 deletions

View file

@ -6,7 +6,7 @@ NAME
SYNOPSIS
gcloud beta container bare-metal admin-clusters unenroll
(ADMIN_CLUSTER : --location=LOCATION) [--allow-missing] [--async]
[--validate-only] [GCLOUD_WIDE_FLAG ...]
[--ignore-errors] [--validate-only] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Unenroll an Anthos on bare metal admin cluster so that it is no
@ -61,6 +61,10 @@ FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--ignore-errors
If set, the unenrollment of a bare metal admin cluster resource will
succeed even if errors occur during unenrollment.
--validate-only
If set, only validate the request, but do not actually perform the
operation.

View file

@ -29,8 +29,9 @@ SYNOPSIS
[ips=IPS],[netmask=NETMASK]) [--admin-users=ADMIN_USERS]
[--annotations=[KEY=VALUE,...]] [--async] [--description=DESCRIPTION]
[--disable-aag-config] [--disable-vsphere-csi] [--enable-auto-repair]
[--enable-control-plane-v2] [--enable-vm-tracking] [--validate-only]
[--enable-vm-tracking] [--validate-only]
[--cpus=CPUS --enable-auto-resize --memory=MEMORY --replicas=REPLICAS]
[--disable-control-plane-v2 | --enable-control-plane-v2]
[--enable-advanced-networking --enable-dataplane-v2]
[GCLOUD_WIDE_FLAG ...]
@ -278,6 +279,16 @@ OPTIONAL FLAGS
Users that will be granted the cluster-admin role on the cluster,
providing full access to the cluster.
To add multiple users, specify one in each flag. When updating, the
update command overwrites the whole grant list. Specify all existing
and new users that you want to be cluster administrators.
Examples:
$ gcloud beta container vmware clusters create
--admin-users alice@example.com
--admin-users bob@example.com
--annotations=[KEY=VALUE,...]
Annotations on the VMware user cluster.
@ -305,9 +316,6 @@ OPTIONAL FLAGS
--enable-auto-repair
If set, deploy the cluster-health-controller.
--enable-control-plane-v2
If set, enable control plane v2.
--enable-vm-tracking
If set, enable VM tracking.
@ -334,6 +342,14 @@ OPTIONAL FLAGS
Number of control plane nodes for this VMware user cluster. (default:
1 replica).
At most one of these can be specified:
--disable-control-plane-v2
If set, disable control plane v2.
--enable-control-plane-v2
If set, enable control plane v2.
Dataplane V2 configurations
--enable-advanced-networking

View file

@ -66,6 +66,16 @@ FLAGS
Users that will be granted the cluster-admin role on the cluster,
providing full access to the cluster.
To add multiple users, specify one in each flag. When updating, the
update command overwrites the whole grant list. Specify all existing
and new users that you want to be cluster administrators.
Examples:
$ gcloud beta container vmware clusters update
--admin-users alice@example.com
--admin-users bob@example.com
--async
Return immediately, without waiting for the operation in progress to
complete.