mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Thu May 23 09:22:11 UTC 2024
This commit is contained in:
parent
3b84182be4
commit
e617a432f4
175 changed files with 2973 additions and 461 deletions
|
|
@ -26,13 +26,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ SYNOPSIS
|
|||
gpu-sharing-strategy=GPU_SHARING_STRATEGY,
|
||||
max-shared-clients-per-gpu=MAX_SHARED_CLIENTS_PER_GPU],...]]
|
||||
[--addons=[ADDON,...]] [--allow-route-overlap] [--async]
|
||||
[--autoprovisioning-enable-insecure-kubelet-readonly-port]
|
||||
[--autoprovisioning-network-tags=TAGS,[TAGS,...]]
|
||||
[--autoprovisioning-resource-manager-tags=[KEY=VALUE,...]]
|
||||
[--autoscaling-profile=AUTOSCALING_PROFILE]
|
||||
|
|
@ -31,6 +32,7 @@ SYNOPSIS
|
|||
[--enable-dataplane-v2] [--enable-fleet] [--enable-fqdn-network-policy]
|
||||
[--enable-gke-oidc] [--enable-google-cloud-access] [--enable-gvnic]
|
||||
[--enable-identity-service] [--enable-image-streaming]
|
||||
[--enable-insecure-kubelet-readonly-port]
|
||||
[--enable-intra-node-visibility] [--enable-ip-alias]
|
||||
[--enable-kubernetes-alpha]
|
||||
[--enable-kubernetes-unstable-apis=API,[API,...]]
|
||||
|
|
@ -217,6 +219,16 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port for Autoprovisioned Node
|
||||
Pools.
|
||||
|
||||
If not set, the value from nodePoolDefaults.nodeConfigDefaults will be
|
||||
used.
|
||||
|
||||
To disable the readonly port
|
||||
--no-autoprovisioning-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--autoprovisioning-network-tags=TAGS,[TAGS,...]
|
||||
Applies the given Compute Engine tags (comma separated) on all nodes in
|
||||
the auto-provisioned node pools of the new Standard cluster or the new
|
||||
|
|
@ -540,6 +552,12 @@ FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on cluster.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port.
|
||||
|
||||
To disable the readonly port on a cluster or node-pool set the flag to
|
||||
--no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-intra-node-visibility
|
||||
Enable Intra-node visibility for this cluster.
|
||||
|
||||
|
|
@ -787,7 +805,7 @@ FLAGS
|
|||
The maximum number of nodes to allocate per default initial node pool.
|
||||
Kubernetes Engine will automatically create enough nodes pools such
|
||||
that each node pool contains less than --max-nodes-per-pool nodes.
|
||||
Defaults to 1000 nodes, but can be set as low as 100 nodes per pool on
|
||||
Defaults to 2000 nodes, but can be set as low as 100 nodes per pool on
|
||||
initial create.
|
||||
|
||||
--max-pods-per-node=MAX_PODS_PER_NODE
|
||||
|
|
@ -1949,13 +1967,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
One of either maintenance-window or the group of maintenance-window flags
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud beta container clusters create-auto NAME [--async]
|
||||
[--autoprovisioning-enable-insecure-kubelet-readonly-port]
|
||||
[--autoprovisioning-network-tags=TAGS,[TAGS,...]]
|
||||
[--autoprovisioning-resource-manager-tags=[KEY=VALUE,...]]
|
||||
[--boot-disk-kms-key=BOOT_DISK_KMS_KEY]
|
||||
|
|
@ -62,6 +63,16 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port for Autoprovisioned Node
|
||||
Pools.
|
||||
|
||||
If not set, the value from nodePoolDefaults.nodeConfigDefaults will be
|
||||
used.
|
||||
|
||||
To disable the readonly port
|
||||
--no-autoprovisioning-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--autoprovisioning-network-tags=TAGS,[TAGS,...]
|
||||
Applies the given Compute Engine tags (comma separated) on all nodes in
|
||||
the auto-provisioned node pools of the new Standard cluster or the new
|
||||
|
|
@ -514,13 +525,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
Options to specify the node identity.
|
||||
|
|
|
|||
|
|
@ -42,13 +42,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -53,13 +53,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -19,13 +19,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
|
|
|
|||
|
|
@ -68,13 +68,13 @@ OPTIONAL FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud beta container clusters update NAME
|
||||
(--autoprovisioning-network-tags=[TAGS,...]
|
||||
(--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
| --autoprovisioning-network-tags=[TAGS,...]
|
||||
| --autoprovisioning-resource-manager-tags=[KEY=VALUE,...]
|
||||
| --autoscaling-profile=AUTOSCALING_PROFILE | --clear-fleet-project
|
||||
| --complete-credential-rotation | --complete-ip-rotation
|
||||
|
|
@ -16,7 +17,8 @@ SYNOPSIS
|
|||
| --enable-cost-allocation | --enable-fleet
|
||||
| --enable-fqdn-network-policy | --enable-gke-oidc
|
||||
| --enable-google-cloud-access | --enable-identity-service
|
||||
| --enable-image-streaming | --enable-intra-node-visibility
|
||||
| --enable-image-streaming | --enable-insecure-kubelet-readonly-port
|
||||
| --enable-intra-node-visibility
|
||||
| --enable-kubernetes-unstable-apis=API,[API,...]
|
||||
| --enable-l4-ilb-subsetting | --enable-legacy-authorization
|
||||
| --enable-logging-monitoring-system-only
|
||||
|
|
@ -120,6 +122,16 @@ POSITIONAL ARGUMENTS
|
|||
REQUIRED FLAGS
|
||||
Exactly one of these must be specified:
|
||||
|
||||
--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port for Autoprovisioned
|
||||
Node Pools.
|
||||
|
||||
If not set, the value from nodePoolDefaults.nodeConfigDefaults will
|
||||
be used.
|
||||
|
||||
To disable the readonly port
|
||||
--no-autoprovisioning-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--autoprovisioning-network-tags=[TAGS,...]
|
||||
Replaces the user specified Compute Engine tags on all nodes in all
|
||||
the existing auto-provisioned node pools in the Standard cluster or
|
||||
|
|
@ -318,6 +330,12 @@ REQUIRED FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on cluster.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port.
|
||||
|
||||
To disable the readonly port on a cluster or node-pool set the flag
|
||||
to --no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-intra-node-visibility
|
||||
Enable Intra-node visibility for this cluster.
|
||||
|
||||
|
|
@ -1435,13 +1453,13 @@ OPTIONAL FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
Cluster autoscaling
|
||||
|
|
|
|||
|
|
@ -95,13 +95,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ FLAGS
|
|||
|
||||
$ gcloud beta container fleet create --security-posture=standard
|
||||
|
||||
SECURITY_POSTURE must be one of: disabled, standard.
|
||||
SECURITY_POSTURE must be one of: disabled, standard, enterprise.
|
||||
|
||||
--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING
|
||||
To apply standard vulnerability scanning to clusters in the fleet,
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ FLAGS
|
|||
|
||||
$ gcloud beta container fleet update --security-posture=standard
|
||||
|
||||
SECURITY_POSTURE must be one of: disabled, standard.
|
||||
SECURITY_POSTURE must be one of: disabled, standard, enterprise.
|
||||
|
||||
--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING
|
||||
To apply standard vulnerability scanning to clusters in the fleet,
|
||||
|
|
|
|||
|
|
@ -21,13 +21,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ FLAGS
|
|||
|
||||
$ gcloud beta container hub create --security-posture=standard
|
||||
|
||||
SECURITY_POSTURE must be one of: disabled, standard.
|
||||
SECURITY_POSTURE must be one of: disabled, standard, enterprise.
|
||||
|
||||
--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING
|
||||
To apply standard vulnerability scanning to clusters in the fleet,
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ FLAGS
|
|||
|
||||
$ gcloud beta container hub update --security-posture=standard
|
||||
|
||||
SECURITY_POSTURE must be one of: disabled, standard.
|
||||
SECURITY_POSTURE must be one of: disabled, standard, enterprise.
|
||||
|
||||
--workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING
|
||||
To apply standard vulnerability scanning to clusters in the fleet,
|
||||
|
|
|
|||
|
|
@ -33,13 +33,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -21,10 +21,11 @@ SYNOPSIS
|
|||
[--enable-autorepair] [--no-enable-autoupgrade]
|
||||
[--enable-blue-green-upgrade] [--enable-confidential-nodes]
|
||||
[--enable-confidential-storage] [--enable-gvnic]
|
||||
[--enable-image-streaming] [--enable-nested-virtualization]
|
||||
[--enable-private-nodes] [--enable-queued-provisioning]
|
||||
[--enable-surge-upgrade] [--image-type=IMAGE_TYPE]
|
||||
[--labels=[KEY=VALUE,...]] [--logging-variant=LOGGING_VARIANT]
|
||||
[--enable-image-streaming] [--enable-insecure-kubelet-readonly-port]
|
||||
[--enable-nested-virtualization] [--enable-private-nodes]
|
||||
[--enable-queued-provisioning] [--enable-surge-upgrade]
|
||||
[--image-type=IMAGE_TYPE] [--labels=[KEY=VALUE,...]]
|
||||
[--logging-variant=LOGGING_VARIANT]
|
||||
[--machine-type=MACHINE_TYPE, -m MACHINE_TYPE]
|
||||
[--max-pods-per-node=MAX_PODS_PER_NODE]
|
||||
[--max-surge-upgrade=MAX_SURGE_UPGRADE; default=1]
|
||||
|
|
@ -260,6 +261,12 @@ FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on node pool.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port.
|
||||
|
||||
To disable the readonly port on a cluster or node-pool set the flag to
|
||||
--no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-nested-virtualization
|
||||
Enables the use of nested virtualization on the node pool. Defaults to
|
||||
false. Can only be enabled on UBUNTU_CONTAINERD base image or
|
||||
|
|
@ -968,13 +975,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
Specifies the reservation for the node pool.
|
||||
|
|
|
|||
|
|
@ -40,13 +40,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -30,13 +30,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -16,13 +16,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -26,13 +26,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
|
|
|
|||
|
|
@ -41,13 +41,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ SYNOPSIS
|
|||
gcloud beta container node-pools update NAME
|
||||
(--containerd-config-from-file=CONTAINERD_CONFIG_FROM_FILE
|
||||
| --enable-confidential-nodes | --enable-gvnic
|
||||
| --enable-image-streaming | --enable-private-nodes
|
||||
| --enable-queued-provisioning | --labels=[KEY=VALUE,...]
|
||||
| --logging-variant=LOGGING_VARIANT
|
||||
| --enable-image-streaming | --enable-insecure-kubelet-readonly-port
|
||||
| --enable-private-nodes | --enable-queued-provisioning
|
||||
| --labels=[KEY=VALUE,...] | --logging-variant=LOGGING_VARIANT
|
||||
| --network-performance-configs=[PROPERTY=VALUE,...]
|
||||
| --node-labels=[NODE_LABEL,...] | --node-locations=ZONE,[ZONE,...]
|
||||
| --node-taints=[NODE_TAINT,...]
|
||||
|
|
@ -72,6 +72,12 @@ REQUIRED FLAGS
|
|||
--enable-image-streaming
|
||||
Specifies whether to enable image streaming on node pool.
|
||||
|
||||
--enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port.
|
||||
|
||||
To disable the readonly port on a cluster or node-pool set the flag
|
||||
to --no-enable-insecure-kubelet-readonly-port.
|
||||
|
||||
--enable-private-nodes
|
||||
Enables provisioning nodes with private IP addresses only.
|
||||
|
||||
|
|
@ -497,13 +503,13 @@ OPTIONAL FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -31,13 +31,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -23,13 +23,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -15,13 +15,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
|
|
@ -21,13 +21,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
|
|
|
|||
|
|
@ -23,13 +23,13 @@ FLAGS
|
|||
|
||||
--location=LOCATION
|
||||
Compute zone or region (e.g. us-central1-a or us-central1) for the
|
||||
cluster.
|
||||
cluster. Prefer using this flag over the --region or --zone flags.
|
||||
|
||||
--region=REGION
|
||||
Compute region (e.g. us-central1) for the cluster.
|
||||
Compute region (e.g. us-central1) for a regional cluster.
|
||||
|
||||
--zone=ZONE, -z ZONE
|
||||
Compute zone (e.g. us-central1-a) for the cluster. Overrides the
|
||||
Compute zone (e.g. us-central1-a) for a zonal cluster. Overrides the
|
||||
default compute/zone property value for this command invocation.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue