mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-11 15:39:42 +00:00
gcloud: Wed Sep 27 12:05:40 UTC 2023
This commit is contained in:
parent
54eca12593
commit
6c60d7f07f
256 changed files with 8313 additions and 442 deletions
154
gcloud/container/vmware/node-pools/create
Normal file
154
gcloud/container/vmware/node-pools/create
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools create - create a node pool in an Anthos
|
||||
cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools create
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION)
|
||||
(--image-type=IMAGE_TYPE : --boot-disk-size=BOOT_DISK_SIZE --cpus=CPUS
|
||||
--enable-load-balancer --image=IMAGE --memory=MEMORY
|
||||
--node-labels=[KEY=VALUE,...]
|
||||
--node-taints=[KEY=VALUE:EFFECT,...] --replicas=REPLICAS)
|
||||
[--annotations=[KEY=VALUE,...]] [--async] [--display-name=DISPLAY_NAME]
|
||||
[--validate-only]
|
||||
[--max-replicas=MAX_REPLICAS --min-replicas=MIN_REPLICAS]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a node pool in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To create a node pool named my-node-pool in a cluster named my-cluster
|
||||
managed in location us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools create my-node-pool \
|
||||
--cluster=my-cluster --location=us-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Node pool resource - node pool to create The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
NODE_POOL
|
||||
ID of the node_pool or fully qualified identifier for the node_pool.
|
||||
|
||||
To set the node_pool attribute:
|
||||
▸ provide the argument node_pool on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
cluster of the node_pool.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the node_pool.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
REQUIRED FLAGS
|
||||
Configuration of the node pool
|
||||
|
||||
This must be specified.
|
||||
|
||||
--image-type=IMAGE_TYPE
|
||||
OS image type to use on node pool instances.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--boot-disk-size=BOOT_DISK_SIZE
|
||||
Size of VMware disk to be used during creation in GB.
|
||||
|
||||
--cpus=CPUS
|
||||
Number of CPUs for each node in the node pool.
|
||||
|
||||
--enable-load-balancer
|
||||
If set, enable the use of load balancer on the node pool instances.
|
||||
|
||||
--image=IMAGE
|
||||
OS image name in vCenter.
|
||||
|
||||
--memory=MEMORY
|
||||
Size of memory for each node in the node pool in MB.
|
||||
|
||||
--node-labels=[KEY=VALUE,...]
|
||||
Kubernetes labels (key/value pairs) to be applied to each node.
|
||||
|
||||
--node-taints=[KEY=VALUE:EFFECT,...]
|
||||
Applies the given kubernetes taints on all nodes in the new node
|
||||
pool, which can be used with tolerations for pod scheduling.
|
||||
|
||||
Taint effect must be one of the following: NoSchedule,
|
||||
PreferNoSchedule, or NoExecute.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud container vmware node-pools create node-pool-1 \
|
||||
--cluster=example-cluster \
|
||||
--node-taints=key1=val1:NoSchedule,key2=val2:PreferNoSchedule
|
||||
|
||||
--replicas=REPLICAS
|
||||
Number of replicas to use on node pool instances.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--annotations=[KEY=VALUE,...]
|
||||
Annotations on the node pool.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--display-name=DISPLAY_NAME
|
||||
Display name for the resource.
|
||||
|
||||
--validate-only
|
||||
If set, only validate the request, but do not actually perform the
|
||||
operation.
|
||||
|
||||
Node pool autoscaling
|
||||
|
||||
--max-replicas=MAX_REPLICAS
|
||||
Maximum number of replicas in the node pool.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--min-replicas=MIN_REPLICAS
|
||||
Minimum number of replicas in the node pool.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools create
|
||||
|
||||
$ gcloud beta container vmware node-pools create
|
||||
|
||||
90
gcloud/container/vmware/node-pools/delete
Normal file
90
gcloud/container/vmware/node-pools/delete
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools delete - delete a node pool in an Anthos
|
||||
cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools delete
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--allow-missing]
|
||||
[--async] [--ignore-errors] [--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Delete a node pool in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To delete a node pool named my-node-pool in a cluster named my-cluster
|
||||
managed in location us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools delete my-node-pool \
|
||||
--cluster=my-cluster --location=us-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Node pool resource - node pool to delete The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
NODE_POOL
|
||||
ID of the node_pool or fully qualified identifier for the node_pool.
|
||||
|
||||
To set the node_pool attribute:
|
||||
▸ provide the argument node_pool on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
cluster of the node_pool.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the node_pool.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
FLAGS
|
||||
--allow-missing
|
||||
If set, and the Vmware Node Pool is not found, the request will succeed
|
||||
but no action will be taken.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--ignore-errors
|
||||
If set, the deletion of a VMware 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.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools delete
|
||||
|
||||
$ gcloud beta container vmware node-pools delete
|
||||
|
||||
73
gcloud/container/vmware/node-pools/describe
Normal file
73
gcloud/container/vmware/node-pools/describe
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools describe - describe a node pool in an
|
||||
Anthos cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools describe
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Describe a node pool in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To describe a node pool named my-node-pool in a cluster named my-cluster
|
||||
managed in location us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools describe my-node-pool \
|
||||
--cluster=my-cluster --location=us-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Node pool resource - node pool to describe The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
NODE_POOL
|
||||
ID of the node_pool or fully qualified identifier for the node_pool.
|
||||
|
||||
To set the node_pool attribute:
|
||||
▸ provide the argument node_pool on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
cluster of the node_pool.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the node_pool.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools describe
|
||||
|
||||
$ gcloud beta container vmware node-pools describe
|
||||
|
||||
78
gcloud/container/vmware/node-pools/enroll
Normal file
78
gcloud/container/vmware/node-pools/enroll
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools enroll - enroll a node pool in an Anthos
|
||||
cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools enroll
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--async]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Enroll a node pool in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To enroll a node pool named my-node-pool in a cluster named my-cluster
|
||||
managed in location us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools enroll my-node-pool \
|
||||
--cluster=my-cluster --location=us-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Node pool resource - node pool to enroll The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
NODE_POOL
|
||||
ID of the node_pool or fully qualified identifier for the node_pool.
|
||||
|
||||
To set the node_pool attribute:
|
||||
▸ provide the argument node_pool on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
cluster of the node_pool.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the node_pool.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools enroll
|
||||
|
||||
$ gcloud beta container vmware node-pools enroll
|
||||
|
||||
43
gcloud/container/vmware/node-pools/help
Normal file
43
gcloud/container/vmware/node-pools/help
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools - create and manage node pools in an
|
||||
Anthos cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create and manage node pools in an Anthos cluster on VMware.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
Create a node pool in an Anthos cluster on VMware.
|
||||
|
||||
delete
|
||||
Delete a node pool in an Anthos cluster on VMware.
|
||||
|
||||
describe
|
||||
Describe a node pool in an Anthos cluster on VMware.
|
||||
|
||||
enroll
|
||||
Enroll a node pool in an Anthos cluster on VMware.
|
||||
|
||||
list
|
||||
List node pools in an Anthos cluster on VMware.
|
||||
|
||||
update
|
||||
Update a node pool in an Anthos cluster on VMware.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools
|
||||
|
||||
$ gcloud beta container vmware node-pools
|
||||
|
||||
98
gcloud/container/vmware/node-pools/list
Normal file
98
gcloud/container/vmware/node-pools/list
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools list - list node pools in an Anthos
|
||||
cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools list
|
||||
(--cluster=CLUSTER : --location=LOCATION) [--filter=EXPRESSION]
|
||||
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
List node pools in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To list all node pools in a cluster named my-cluster managed in location
|
||||
us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools list --cluster=my-cluster \
|
||||
--location=us-west1
|
||||
|
||||
REQUIRED FLAGS
|
||||
Cluster resource - cluster to list The arguments in this group can be used
|
||||
to specify the attributes of this resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --cluster on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
ID of the cluster or fully qualified identifier for the cluster.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the cluster.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --cluster on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
LIST COMMAND FLAGS
|
||||
--filter=EXPRESSION
|
||||
Apply a Boolean filter EXPRESSION to each resource item to be listed.
|
||||
If the expression evaluates True, then that item is listed. For more
|
||||
details and examples of filter expressions, run $ gcloud topic filters.
|
||||
This flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--limit=LIMIT
|
||||
Maximum number of resources to list. The default is unlimited. This
|
||||
flag interacts with other flags that are applied in this order:
|
||||
--flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--page-size=PAGE_SIZE
|
||||
Some services group resource list output into pages. This flag
|
||||
specifies the maximum number of resources per page. The default is
|
||||
determined by the service if it supports paging, otherwise it is
|
||||
unlimited (no paging). Paging may be applied before or after --filter
|
||||
and --limit depending on the service.
|
||||
|
||||
--sort-by=[FIELD,...]
|
||||
Comma-separated list of resource field key names to sort by. The
|
||||
default order is ascending. Prefix a field with ``~'' for descending
|
||||
order on that field. This flag interacts with other flags that are
|
||||
applied in this order: --flatten, --sort-by, --filter, --limit.
|
||||
|
||||
--uri
|
||||
Print a list of resource URIs instead of the default output, and change
|
||||
the command output to a list of URIs. If this flag is used with
|
||||
--format, the formatting is applied on this URI list. To display URIs
|
||||
alongside other keys instead, use the uri() transform.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools list
|
||||
|
||||
$ gcloud beta container vmware node-pools list
|
||||
|
||||
144
gcloud/container/vmware/node-pools/update
Normal file
144
gcloud/container/vmware/node-pools/update
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
NAME
|
||||
gcloud container vmware node-pools update - update a node pool in an Anthos
|
||||
cluster on VMware
|
||||
|
||||
SYNOPSIS
|
||||
gcloud container vmware node-pools update
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--async]
|
||||
[--display-name=DISPLAY_NAME] [--validate-only]
|
||||
[--boot-disk-size=BOOT_DISK_SIZE --cpus=CPUS --image=IMAGE
|
||||
--image-type=IMAGE_TYPE --memory=MEMORY --node-labels=[KEY=VALUE,...]
|
||||
--node-taints=[KEY=VALUE:EFFECT,...]
|
||||
--replicas=REPLICAS --disable-load-balancer | --enable-load-balancer]
|
||||
[--max-replicas=MAX_REPLICAS --min-replicas=MIN_REPLICAS]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Update a node pool in an Anthos cluster on VMware.
|
||||
|
||||
EXAMPLES
|
||||
To update a node pool named my-node-pool in a cluster named my-cluster
|
||||
managed in location us-west1, run:
|
||||
|
||||
$ gcloud container vmware node-pools update my-node-pool \
|
||||
--cluster=my-cluster --location=us-west1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Node pool resource - node pool to update The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
◆ provide the argument --project on the command line;
|
||||
◆ set the property core/project.
|
||||
|
||||
This must be specified.
|
||||
|
||||
NODE_POOL
|
||||
ID of the node_pool or fully qualified identifier for the node_pool.
|
||||
|
||||
To set the node_pool attribute:
|
||||
▸ provide the argument node_pool on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--cluster=CLUSTER
|
||||
cluster of the node_pool.
|
||||
|
||||
To set the cluster attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --cluster on the command line.
|
||||
|
||||
--location=LOCATION
|
||||
Google Cloud location for the node_pool.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument node_pool on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --location on the command line;
|
||||
▸ set the property container_vmware/location.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--display-name=DISPLAY_NAME
|
||||
Display name for the resource.
|
||||
|
||||
--validate-only
|
||||
If set, only validate the request, but do not actually perform the
|
||||
operation.
|
||||
|
||||
Configuration of the node pool
|
||||
|
||||
--boot-disk-size=BOOT_DISK_SIZE
|
||||
Size of VMware disk to be used during creation in GB.
|
||||
|
||||
--cpus=CPUS
|
||||
Number of CPUs for each node in the node pool.
|
||||
|
||||
--image=IMAGE
|
||||
OS image name in vCenter.
|
||||
|
||||
--image-type=IMAGE_TYPE
|
||||
OS image type to use on node pool instances.
|
||||
|
||||
--memory=MEMORY
|
||||
Size of memory for each node in the node pool in MB.
|
||||
|
||||
--node-labels=[KEY=VALUE,...]
|
||||
Kubernetes labels (key/value pairs) to be applied to each node.
|
||||
|
||||
--node-taints=[KEY=VALUE:EFFECT,...]
|
||||
Applies the given kubernetes taints on all nodes in the new node
|
||||
pool, which can be used with tolerations for pod scheduling.
|
||||
|
||||
Taint effect must be one of the following: NoSchedule,
|
||||
PreferNoSchedule, or NoExecute.
|
||||
|
||||
Examples:
|
||||
|
||||
$ gcloud container vmware node-pools update node-pool-1 \
|
||||
--cluster=example-cluster \
|
||||
--node-taints=key1=val1:NoSchedule,key2=val2:PreferNoSchedule
|
||||
|
||||
--replicas=REPLICAS
|
||||
Number of replicas to use on node pool instances.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-load-balancer
|
||||
If set, disable the use of load balancer on the node pool
|
||||
instances.
|
||||
|
||||
--enable-load-balancer
|
||||
If set, enable the use of load balancer on the node pool instances.
|
||||
|
||||
Node pool autoscaling
|
||||
|
||||
--max-replicas=MAX_REPLICAS
|
||||
Maximum number of replicas in the node pool.
|
||||
|
||||
--min-replicas=MIN_REPLICAS
|
||||
Minimum number of replicas in the node pool.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
||||
--trace-token, --user-output-enabled, --verbosity.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
NOTES
|
||||
These variants are also available:
|
||||
|
||||
$ gcloud alpha container vmware node-pools update
|
||||
|
||||
$ gcloud beta container vmware node-pools update
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue