mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Wed Mar 19 10:42:21 UTC 2025
This commit is contained in:
parent
a459a88a5f
commit
e555fef0aa
170 changed files with 6428 additions and 659 deletions
|
|
@ -9,6 +9,7 @@ SYNOPSIS
|
|||
gpu-sharing-strategy=GPU_SHARING_STRATEGY,
|
||||
max-shared-clients-per-gpu=MAX_SHARED_CLIENTS_PER_GPU],...]]
|
||||
[--additional-zones=ZONE,[ZONE,...]] [--addons=[ADDON,...]] [--async]
|
||||
[--auto-monitoring-scope=AUTO_MONITORING_SCOPE]
|
||||
[--autoprovisioning-enable-insecure-kubelet-readonly-port]
|
||||
[--autoprovisioning-network-tags=TAGS,[TAGS,...]]
|
||||
[--autoprovisioning-resource-manager-tags=[KEY=VALUE,...]]
|
||||
|
|
@ -231,6 +232,12 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--auto-monitoring-scope=AUTO_MONITORING_SCOPE
|
||||
Enables Auto-Monitoring for a specific scope within the cluster. ALL:
|
||||
Enables Auto-Monitoring for all supported workloads within the cluster.
|
||||
NONE: Disables Auto-Monitoring. AUTO_MONITORING_SCOPE must be one of:
|
||||
ALL, NONE.
|
||||
|
||||
--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port for Autoprovisioned Node
|
||||
Pools.
|
||||
|
|
@ -1242,6 +1249,11 @@ FLAGS
|
|||
|
||||
kubeletConfig:
|
||||
cpuManagerPolicy: static
|
||||
memoryManager:
|
||||
policy: Static
|
||||
topologyManager:
|
||||
policy: BestEffort
|
||||
scope: pod
|
||||
linuxConfig:
|
||||
sysctl:
|
||||
net.core.somaxconn: '2048'
|
||||
|
|
@ -1258,6 +1270,9 @@ FLAGS
|
|||
cpuCFSQuota true or false (enabled by
|
||||
default)
|
||||
cpuCFSQuotaPeriod interval (e.g., '100ms')
|
||||
memoryManager specify memory manager policy
|
||||
topologyManager specify topology manager policy
|
||||
and scope
|
||||
podPidsLimit integer (The value must be
|
||||
greater than or equal to 1024 and
|
||||
less than 4194304.)
|
||||
|
|
@ -1284,6 +1299,17 @@ FLAGS
|
|||
'fs.mqueue.*', and 'net.*', and
|
||||
sysctls under the groups.)
|
||||
|
||||
KEY VALUE
|
||||
policy either 'Static' or 'None'
|
||||
|
||||
KEY VALUE
|
||||
policy either 'none' or
|
||||
'best-effort' or
|
||||
'single-numa-node' or
|
||||
'restricted'
|
||||
scope either 'pod' or
|
||||
'container'
|
||||
|
||||
List of supported sysctls in 'linuxConfig'.
|
||||
|
||||
KEY VALUE
|
||||
|
|
@ -1307,7 +1333,7 @@ FLAGS
|
|||
integer tuple
|
||||
net.ipv4.tcp_wmem Any positive
|
||||
integer tuple
|
||||
net.ipv4.tcp_tw_reuse Must be {0, 1}
|
||||
net.ipv4.tcp_tw_reuse Must be {0, 1, 2}
|
||||
net.netfilter.nf_conntrack_max Must be between
|
||||
[65536, 4194304]
|
||||
net.netfilter.nf_conntrack_buckets Must be between
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud container clusters create-auto NAME [--async]
|
||||
[--auto-monitoring-scope=AUTO_MONITORING_SCOPE]
|
||||
[--autoprovisioning-enable-insecure-kubelet-readonly-port]
|
||||
[--autoprovisioning-network-tags=TAGS,[TAGS,...]]
|
||||
[--autoprovisioning-resource-manager-tags=[KEY=VALUE,...]]
|
||||
|
|
@ -73,6 +74,12 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--auto-monitoring-scope=AUTO_MONITORING_SCOPE
|
||||
Enables Auto-Monitoring for a specific scope within the cluster. ALL:
|
||||
Enables Auto-Monitoring for all supported workloads within the cluster.
|
||||
NONE: Disables Auto-Monitoring. AUTO_MONITORING_SCOPE must be one of:
|
||||
ALL, NONE.
|
||||
|
||||
--autoprovisioning-enable-insecure-kubelet-readonly-port
|
||||
Enables the Kubelet's insecure read only port for Autoprovisioned Node
|
||||
Pools.
|
||||
|
|
|
|||
|
|
@ -49,7 +49,8 @@ SYNOPSIS
|
|||
| --workload-vulnerability-scanning=WORKLOAD_VULNERABILITY_SCANNING
|
||||
| --additional-pod-ipv4-ranges=NAME,[NAME,...]
|
||||
--remove-additional-pod-ipv4-ranges=NAME,[NAME,...]
|
||||
| --logging=[COMPONENT,...]
|
||||
| --auto-monitoring-scope=AUTO_MONITORING_SCOPE
|
||||
--logging=[COMPONENT,...]
|
||||
--monitoring=[COMPONENT,...] --disable-managed-prometheus
|
||||
| --enable-managed-prometheus
|
||||
| --binauthz-evaluation-mode=BINAUTHZ_EVALUATION_MODE
|
||||
|
|
@ -806,6 +807,12 @@ REQUIRED FLAGS
|
|||
$ gcloud container clusters update example-cluster \
|
||||
--remove-additional-pod-ipv4-ranges=range1,range2
|
||||
|
||||
--auto-monitoring-scope=AUTO_MONITORING_SCOPE
|
||||
Enables Auto-Monitoring for a specific scope within the cluster. ALL:
|
||||
Enables Auto-Monitoring for all supported workloads within the
|
||||
cluster. NONE: Disables Auto-Monitoring. AUTO_MONITORING_SCOPE must
|
||||
be one of: ALL, NONE.
|
||||
|
||||
--logging=[COMPONENT,...]
|
||||
Set the components that have logging enabled. Valid component values
|
||||
are: SYSTEM, WORKLOAD, API_SERVER, CONTROLLER_MANAGER, SCHEDULER,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue