mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-14 00:46:53 +00:00
gcloud: Thu Oct 5 11:50:15 UTC 2023
This commit is contained in:
parent
6c60d7f07f
commit
9641ff6585
118 changed files with 2726 additions and 214 deletions
|
|
@ -37,8 +37,9 @@ SYNOPSIS
|
|||
[--node-taints=[NODE_TAINT,...]] [--node-version=NODE_VERSION]
|
||||
[--num-nodes=NUM_NODES; default=3]
|
||||
[--placement-policy=PLACEMENT_POLICY] [--placement-type=PLACEMENT_TYPE]
|
||||
[--preemptible] [--sandbox=[type=TYPE]]
|
||||
[--shielded-integrity-monitoring] [--shielded-secure-boot]
|
||||
[--preemptible] [--resource-manager-tags=[KEY=VALUE,...]]
|
||||
[--sandbox=[type=TYPE]] [--shielded-integrity-monitoring]
|
||||
[--shielded-secure-boot]
|
||||
[--sole-tenant-node-affinity-file=SOLE_TENANT_NODE_AFFINITY_FILE]
|
||||
[--spot]
|
||||
[--standard-rollout-policy=[batch-node-count=BATCH_NODE_COUNT,
|
||||
|
|
@ -532,6 +533,27 @@ FLAGS
|
|||
https://cloud.google.com/kubernetes-engine/docs/preemptible-vm for more
|
||||
information on how to use Preemptible VMs with Kubernetes Engine.
|
||||
|
||||
--resource-manager-tags=[KEY=VALUE,...]
|
||||
Applies the specified comma-separated resource manager tags that has
|
||||
the GCE_FIREWALL purpose to all nodes in the new node pool.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud alpha container node-pools create example-node-pool \
|
||||
--resource-manager-tags=tagKeys/1234=tagValues/2345
|
||||
$ gcloud alpha container node-pools create example-node-pool \
|
||||
--resource-manager-tags=my-project/key1=value1
|
||||
$ gcloud alpha container node-pools create example-node-pool \
|
||||
--resource-manager-tags=12345/key1=value1,23456/key2=value2
|
||||
$ gcloud alpha container node-pools create example-node-pool \
|
||||
--resource-manager-tags=
|
||||
|
||||
All nodes, including nodes that are resized or re-created, will have
|
||||
the specified tags on the corresponding Instance object in the Compute
|
||||
Engine API. You can reference these tags in network firewall policy
|
||||
rules. For instructions, see
|
||||
https://cloud.google.com/firewall/docs/use-tags-for-firewalls.
|
||||
|
||||
--sandbox=[type=TYPE]
|
||||
Enables the requested sandbox on all nodes in the node pool.
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ SYNOPSIS
|
|||
| --network-performance-configs=[PROPERTY=VALUE,...]
|
||||
| --node-labels=[NODE_LABEL,...] | --node-locations=ZONE,[ZONE,...]
|
||||
| --node-taints=[NODE_TAINT,...]
|
||||
| --resource-manager-tags=[KEY=VALUE,...]
|
||||
| --system-config-from-file=SYSTEM_CONFIG_FROM_FILE
|
||||
| --tags=[TAG,...] | --windows-os-version=WINDOWS_OS_VERSION
|
||||
| --workload-metadata=WORKLOAD_METADATA | --enable-blue-green-upgrade
|
||||
|
|
@ -145,6 +146,29 @@ REQUIRED FLAGS
|
|||
To read more about node-taints, see
|
||||
https://cloud.google.com/kubernetes-engine/docs/node-taints.
|
||||
|
||||
--resource-manager-tags=[KEY=VALUE,...]
|
||||
Replaces all the user specified resource manager tags on all nodes in
|
||||
an existing standard or auto-provisioned node pool in a Standard
|
||||
cluster with the given comma-separated resource manager tags that has
|
||||
the GCE_FIREWALL purpose.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud alpha container node-pools update example-node-pool \
|
||||
--resource-manager-tags=tagKeys/1234=tagValues/2345
|
||||
$ gcloud alpha container node-pools update example-node-pool \
|
||||
--resource-manager-tags=my-project/key1=value1
|
||||
$ gcloud alpha container node-pools update example-node-pool \
|
||||
--resource-manager-tags=12345/key1=value1,23456/key2=value2
|
||||
$ gcloud alpha container node-pools update example-node-pool \
|
||||
--resource-manager-tags=
|
||||
|
||||
All nodes, including nodes that are resized or re-created, will have
|
||||
the specified tags on the corresponding Instance object in the
|
||||
Compute Engine API. You can reference these tags in network firewall
|
||||
policy rules. For instructions, see
|
||||
https://cloud.google.com/firewall/docs/use-tags-for-firewalls.
|
||||
|
||||
--system-config-from-file=SYSTEM_CONFIG_FROM_FILE
|
||||
Path of the YAML/JSON file that contains the node configuration,
|
||||
including Linux kernel parameters (sysctls) and kubelet configs.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue