mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-17 06:11:59 +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
|
|
@ -16,6 +16,7 @@ SYNOPSIS
|
|||
[max-pods-per-node=NUM_PODS],...]] [--async]
|
||||
[--boot-disk-kms-key=BOOT_DISK_KMS_KEY] [--cluster=CLUSTER]
|
||||
[--containerd-config-from-file=PATH_TO_FILE]
|
||||
[--data-cache-count=DATA_CACHE_COUNT]
|
||||
[--disable-pod-cidr-overprovision] [--disk-size=DISK_SIZE]
|
||||
[--disk-type=DISK_TYPE] [--enable-autoprovisioning]
|
||||
[--enable-autorepair] [--no-enable-autoupgrade]
|
||||
|
|
@ -204,6 +205,10 @@ FLAGS
|
|||
Use a full or relative path to a local file containing the value of
|
||||
containerd_config.
|
||||
|
||||
--data-cache-count=DATA_CACHE_COUNT
|
||||
Specifies the number of local SSDs to be utilized for GKE Data Cache in
|
||||
the node pool.
|
||||
|
||||
--disable-pod-cidr-overprovision
|
||||
Disables pod cidr overprovision on nodes. Pod cidr overprovisioning is
|
||||
enabled by default.
|
||||
|
|
@ -708,6 +713,11 @@ FLAGS
|
|||
|
||||
kubeletConfig:
|
||||
cpuManagerPolicy: static
|
||||
memoryManager:
|
||||
policy: Static
|
||||
topologyManager:
|
||||
policy: BestEffort
|
||||
scope: pod
|
||||
linuxConfig:
|
||||
sysctl:
|
||||
net.core.somaxconn: '2048'
|
||||
|
|
@ -724,6 +734,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.)
|
||||
|
|
@ -750,6 +763,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
|
||||
|
|
@ -773,7 +797,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
|
||||
|
|
|
|||
|
|
@ -275,6 +275,11 @@ REQUIRED FLAGS
|
|||
|
||||
kubeletConfig:
|
||||
cpuManagerPolicy: static
|
||||
memoryManager:
|
||||
policy: Static
|
||||
topologyManager:
|
||||
policy: BestEffort
|
||||
scope: pod
|
||||
linuxConfig:
|
||||
sysctl:
|
||||
net.core.somaxconn: '2048'
|
||||
|
|
@ -291,6 +296,9 @@ REQUIRED 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.)
|
||||
|
|
@ -320,6 +328,18 @@ REQUIRED 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
|
||||
|
|
@ -348,7 +368,8 @@ REQUIRED 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue