mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Fri Mar 24 11:31:22 UTC 2023
This commit is contained in:
parent
a4bd29dd06
commit
4ccfc7a5e3
142 changed files with 4081 additions and 397 deletions
|
|
@ -6,7 +6,12 @@ SYNOPSIS
|
|||
gcloud alpha container bare-metal node-pools create
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION)
|
||||
(--node-configs=[labels=LABELS],[node-ip=NODE-IP]
|
||||
: --node-labels=[KEY=VALUE,...] --node-taints=[KEY=VALUE:EFFECT,...])
|
||||
: --node-labels=[KEY=VALUE,...] --node-taints=[KEY=VALUE:EFFECT,...]
|
||||
--cpu-cfs-quota-period=CPU_CFS_QUOTA_PERIOD
|
||||
--cpu-manager-policy=CPU_MANAGER_POLICY --disable-cpu-cfs-quota
|
||||
--disable-serialize-image-pulls --feature-gates=[FEATURE=BOOL,...]
|
||||
--pod-pids-limit=POD_PIDS_LIMIT --registry-burst=REGISTRY_BURST
|
||||
--registry-pull-qps=REGISTRY_PULL_QPS)
|
||||
[--annotations=[KEY=VALUE,...]] [--async] [--display-name=DISPLAY_NAME]
|
||||
[--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -72,6 +77,37 @@ REQUIRED FLAGS
|
|||
--node-taints=[KEY=VALUE:EFFECT,...]
|
||||
Node taint applied to every Kubernetes node in a node pool.
|
||||
|
||||
Sets the modifiable kubelet configurations for bare metal machines.
|
||||
|
||||
--cpu-cfs-quota-period=CPU_CFS_QUOTA_PERIOD
|
||||
CPU Completely Fair Scheduler (CFS) quota period value. Specify
|
||||
with seconds as the time unit, such as 0.2s.
|
||||
|
||||
--cpu-manager-policy=CPU_MANAGER_POLICY
|
||||
The kubelet CPU manager policy. CPU_MANAGER_POLICY must be one of:
|
||||
NONE, STATIC.
|
||||
|
||||
--disable-cpu-cfs-quota
|
||||
If set, disable CPU Completely Fair Scheduler (CFS) quota
|
||||
enforcement for containers that specify CPU limits.
|
||||
|
||||
--disable-serialize-image-pulls
|
||||
If set, prevent the Kubelet from pulling multiple images at a time.
|
||||
|
||||
--feature-gates=[FEATURE=BOOL,...]
|
||||
A map of feature names to bools that enable or disable experimental
|
||||
features.
|
||||
|
||||
--pod-pids-limit=POD_PIDS_LIMIT
|
||||
Maximum number of PIDs in any pod.
|
||||
|
||||
--registry-burst=REGISTRY_BURST
|
||||
Maximum size of bursty pulls, temporarily allows pulls to burst to
|
||||
this number, while still not exceeding registry_pull_qps.
|
||||
|
||||
--registry-pull-qps=REGISTRY_PULL_QPS
|
||||
Limit of registry pulls per second.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--annotations=[KEY=VALUE,...]
|
||||
Annotations on the node pool.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha container bare-metal node-pools delete
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--allow-missing]
|
||||
[--async] [--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
[--async] [--ignore-errors] [--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete a node pool in an Anthos cluster on bare metal.
|
||||
|
|
@ -60,6 +60,10 @@ FLAGS
|
|||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--ignore-errors
|
||||
If set, the deletion of a Bare Metal Node Pool resource will succeed
|
||||
even if errors occur during deletion.
|
||||
|
||||
--validate-only
|
||||
If set, only validate the request, but do not actually perform the
|
||||
operation.
|
||||
|
|
|
|||
|
|
@ -7,8 +7,14 @@ SYNOPSIS
|
|||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--allow-missing]
|
||||
[--async] [--display-name=DISPLAY_NAME] [--validate-only]
|
||||
[--node-configs=[labels=LABELS],[node-ip=NODE-IP]
|
||||
--node-labels=[KEY=VALUE,...] --node-taints=[KEY=VALUE:EFFECT,...]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
--node-labels=[KEY=VALUE,...] --node-taints=[KEY=VALUE:EFFECT,...]
|
||||
--cpu-cfs-quota-period=CPU_CFS_QUOTA_PERIOD
|
||||
--cpu-manager-policy=CPU_MANAGER_POLICY
|
||||
--feature-gates=[FEATURE=BOOL,...] --pod-pids-limit=POD_PIDS_LIMIT
|
||||
--registry-burst=REGISTRY_BURST
|
||||
--registry-pull-qps=REGISTRY_PULL_QPS --disable-cpu-cfs-quota
|
||||
| --enable-cpu-cfs-quota --disable-serialize-image-pulls
|
||||
| --enable-serialize-image-pulls] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update a node pool in an Anthos cluster on bare metal.
|
||||
|
|
@ -86,6 +92,49 @@ FLAGS
|
|||
--node-taints=[KEY=VALUE:EFFECT,...]
|
||||
Node taint applied to every Kubernetes node in a node pool.
|
||||
|
||||
Sets the modifiable kubelet configurations for bare metal machines.
|
||||
|
||||
--cpu-cfs-quota-period=CPU_CFS_QUOTA_PERIOD
|
||||
CPU Completely Fair Scheduler (CFS) quota period value. Specify
|
||||
with seconds as the time unit, such as 0.2s.
|
||||
|
||||
--cpu-manager-policy=CPU_MANAGER_POLICY
|
||||
The kubelet CPU manager policy. CPU_MANAGER_POLICY must be one of:
|
||||
NONE, STATIC.
|
||||
|
||||
--feature-gates=[FEATURE=BOOL,...]
|
||||
A map of feature names to bools that enable or disable experimental
|
||||
features.
|
||||
|
||||
--pod-pids-limit=POD_PIDS_LIMIT
|
||||
Maximum number of PIDs in any pod.
|
||||
|
||||
--registry-burst=REGISTRY_BURST
|
||||
Maximum size of bursty pulls, temporarily allows pulls to burst to
|
||||
this number, while still not exceeding registry_pull_qps.
|
||||
|
||||
--registry-pull-qps=REGISTRY_PULL_QPS
|
||||
Limit of registry pulls per second.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-cpu-cfs-quota
|
||||
If set, disable CPU Completely Fair Scheduler (CFS) quota
|
||||
enforcement for containers that specify CPU limits.
|
||||
|
||||
--enable-cpu-cfs-quota
|
||||
If set, enable CPU Completely Fair Scheduler (CFS) quota
|
||||
enforcement for containers that specify CPU limits.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-serialize-image-pulls
|
||||
If set, prevent the Kubelet from pulling multiple images at a
|
||||
time.
|
||||
|
||||
--enable-serialize-image-pulls
|
||||
If set, enable the Kubelet to pull multiple images at a time.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue