1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-17 14:26:34 +00:00

gcloud: Fri Mar 24 11:31:22 UTC 2023

This commit is contained in:
Automated 2023-03-24 11:31:22 +00:00
parent a4bd29dd06
commit 4ccfc7a5e3
142 changed files with 4081 additions and 397 deletions

View file

@ -24,7 +24,7 @@ SYNOPSIS
[--no-enable-autoupgrade] [--enable-cloud-logging]
[--enable-cloud-monitoring] [--enable-cloud-run-alpha]
[--enable-confidential-nodes] [--enable-cost-allocation]
[--enable-dataplane-v2] [--enable-gke-oidc]
[--enable-dataplane-v2] [--enable-fleet] [--enable-gke-oidc]
[--enable-google-cloud-access] [--enable-gvnic]
[--enable-identity-service] [--enable-image-streaming]
[--enable-intra-node-visibility] [--enable-ip-alias]
@ -34,7 +34,8 @@ SYNOPSIS
[--enable-master-global-access] [--enable-network-policy]
[--enable-pod-security-policy] [--enable-service-externalips]
[--enable-shielded-nodes] [--enable-stackdriver-kubernetes]
[--enable-vertical-pod-autoscaling] [--gateway-api=GATEWAY_API]
[--enable-vertical-pod-autoscaling]
[--fleet-project=PROJECT_ID_OR_NUMBER] [--gateway-api=GATEWAY_API]
[--identity-provider=IDENTITY_PROVIDER] [--image-type=IMAGE_TYPE]
[--ipv6-access-type=IPV6_ACCESS_TYPE] [--issue-client-certificate]
[--istio-config=[auth=MTLS_PERMISSIVE,...]] [--labels=[KEY=VALUE,...]]
@ -412,6 +413,12 @@ FLAGS
Enables the new eBPF dataplane for GKE clusters that is required for
network security, scalability and visibility features.
--enable-fleet
Set cluster project as the fleet host project. This will register the
cluster to the same project. To register the cluster to a fleet in a
different project, please use --fleet-project=FLEET_HOST_PROJECT.
Example: $ gcloud beta container clusters create --enable-fleet
--enable-gke-oidc
(DEPRECATED) Enable GKE OIDC authentication on the cluster.
@ -542,6 +549,14 @@ FLAGS
--enable-vertical-pod-autoscaling
Enable vertical pod autoscaling for a cluster.
--fleet-project=PROJECT_ID_OR_NUMBER
Sets fleet host project for the cluster. If specified, the current
cluster will be registered as a fleet membership under the fleet host
project.
Example: $ gcloud beta container clusters create
--fleet-project=my-project
--gateway-api=GATEWAY_API
Enables GKE Gateway controller in this cluster. The value of the flag
specifies which Open Source Gateway API release channel will be used to

View file

@ -10,11 +10,12 @@ SYNOPSIS
[--cluster-secondary-range-name=NAME]
[--cluster-version=CLUSTER_VERSION]
[--create-subnetwork=[KEY=VALUE,...]]
[--database-encryption-key=DATABASE_ENCRYPTION_KEY]
[--enable-google-cloud-access] [--network=NETWORK]
[--private-endpoint-subnetwork=NAME] [--release-channel=CHANNEL]
[--security-group=SECURITY_GROUP] [--services-ipv4-cidr=CIDR]
[--services-secondary-range-name=NAME] [--subnetwork=SUBNETWORK]
[--database-encryption-key=DATABASE_ENCRYPTION_KEY] [--enable-fleet]
[--enable-google-cloud-access] [--fleet-project=PROJECT_ID_OR_NUMBER]
[--network=NETWORK] [--private-endpoint-subnetwork=NAME]
[--release-channel=CHANNEL] [--security-group=SECURITY_GROUP]
[--services-ipv4-cidr=CIDR] [--services-secondary-range-name=NAME]
[--subnetwork=SUBNETWORK]
[--binauthz-evaluation-mode=BINAUTHZ_EVALUATION_MODE
--binauthz-policy=BINAUTHZ_POLICY]
[--enable-master-authorized-networks
@ -149,11 +150,25 @@ FLAGS
For more information, see
https://cloud.google.com/kubernetes-engine/docs/how-to/encrypting-secrets.
--enable-fleet
Set cluster project as the fleet host project. This will register the
cluster to the same project. To register the cluster to a fleet in a
different project, please use --fleet-project=FLEET_HOST_PROJECT.
Example: $ gcloud beta container clusters create-auto --enable-fleet
--enable-google-cloud-access
When you enable Google Cloud Access, any public IP addresses owned by
Google Cloud can reach the public control plane endpoint of your
cluster.
--fleet-project=PROJECT_ID_OR_NUMBER
Sets fleet host project for the cluster. If specified, the current
cluster will be registered as a fleet membership under the fleet host
project.
Example: $ gcloud beta container clusters create-auto \
--fleet-project=my-project
--network=NETWORK
The Compute Engine Network that the cluster will connect to. Google
Kubernetes Engine will use this network when creating routes and

View file

@ -5,12 +5,12 @@ NAME
SYNOPSIS
gcloud beta container clusters update NAME
(--autoprovisioning-network-tags=[TAGS,...]
| --autoscaling-profile=AUTOSCALING_PROFILE
| --autoscaling-profile=AUTOSCALING_PROFILE | --clear-fleet-project
| --complete-credential-rotation | --complete-ip-rotation
| --database-encryption-key=DATABASE_ENCRYPTION_KEY
| --disable-database-encryption | --disable-default-snat
| --disable-workload-identity | --enable-autoscaling
| --enable-cost-allocation | --enable-gke-oidc
| --enable-cost-allocation | --enable-fleet | --enable-gke-oidc
| --enable-google-cloud-access | --enable-identity-service
| --enable-image-streaming | --enable-intra-node-visibility
| --enable-l4-ilb-subsetting | --enable-legacy-authorization
@ -19,7 +19,8 @@ SYNOPSIS
| --enable-network-policy | --enable-pod-security-policy
| --enable-private-endpoint | --enable-service-externalips
| --enable-shielded-nodes | --enable-stackdriver-kubernetes
| --enable-vertical-pod-autoscaling | --gateway-api=GATEWAY_API
| --enable-vertical-pod-autoscaling
| --fleet-project=PROJECT_ID_OR_NUMBER | --gateway-api=GATEWAY_API
| --generate-password | --identity-provider=IDENTITY_PROVIDER
| --logging-variant=LOGGING_VARIANT | --maintenance-window=START_TIME
| --notification-config=[pubsub=ENABLED|DISABLED,
@ -116,6 +117,10 @@ REQUIRED FLAGS
Set autoscaling behaviour, choices are 'optimize-utilization' and
'balanced'. Default is 'balanced'.
--clear-fleet-project
Remove the cluster from current fleet host project. Example: $ gcloud
beta container clusters update --clear-fleet-project
--complete-credential-rotation
Complete the IP and credential rotation for this cluster. For
example:
@ -199,6 +204,12 @@ REQUIRED FLAGS
Use --no-enable-cost-allocation to disable this feature.
--enable-fleet
Set cluster project as the fleet host project. This will register the
cluster to the same project. To register the cluster to a fleet in a
different project, please use --fleet-project=FLEET_HOST_PROJECT.
Example: $ gcloud beta container clusters update --enable-fleet
--enable-gke-oidc
(DEPRECATED) Enable GKE OIDC authentication on the cluster.
@ -322,6 +333,14 @@ REQUIRED FLAGS
--enable-vertical-pod-autoscaling
Enable vertical pod autoscaling for a cluster.
--fleet-project=PROJECT_ID_OR_NUMBER
Sets fleet host project for the cluster. If specified, the current
cluster will be registered as a fleet membership under the fleet host
project.
Example: $ gcloud beta container clusters update
--fleet-project=my-project
--gateway-api=GATEWAY_API
Enables GKE Gateway controller in this cluster. The value of the flag
specifies which Open Source Gateway API release channel will be used