1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 15:39:42 +00:00
gcloud-help/gcloud/container/azure/node-pools/create

181 lines
6.4 KiB
Text
Raw Normal View History

2022-03-01 04:29:52 +00:00
NAME
gcloud container azure node-pools create - create a node pool in an Anthos
cluster on Azure
SYNOPSIS
gcloud container azure node-pools create
(NODE_POOL : --cluster=CLUSTER --location=LOCATION)
2023-04-26 10:24:37 +00:00
--max-pods-per-node=MAX_PODS_PER_NODE --node-version=NODE_VERSION
--ssh-public-key=SSH_PUBLIC_KEY --subnet-id=SUBNET_ID
(--max-nodes=MAX_NODES --min-nodes=MIN_NODES)
[--annotations=ANNOTATION,[ANNOTATION,...]] [--async]
[--azure-availability-zone=AZURE_AVAILABILITY_ZONE]
2022-03-01 04:29:52 +00:00
[--config-encryption-key-id=CONFIG_ENCRYPTION_KEY_ID]
[--config-encryption-public-key=CONFIG_ENCRYPTION_PUBLIC_KEY]
2023-09-07 10:42:28 +00:00
[--enable-autorepair] [--node-labels=NODE_LABEL,[NODE_LABEL,...]]
2022-03-01 04:29:52 +00:00
[--node-taints=NODE_TAINT,[NODE_TAINT,...]]
[--root-volume-size=ROOT_VOLUME_SIZE] [--tags=TAG,[TAG,...]]
[--validate-only] [--vm-size=VM_SIZE]
[--proxy-resource-group-id=PROXY_RESOURCE_GROUP_ID
--proxy-secret-id=PROXY_SECRET_ID] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create a node pool in an Anthos cluster on Azure.
EXAMPLES
To create a node pool named my-node-pool in a cluster named my-cluster
managed in location us-west1, run:
$ gcloud container azure node-pools create my-node-pool \
--cluster=my-cluster --location=us-west1 \
--node-version=NODE_VERSION --ssh-public-key=SSH_PUBLIC_KEY \
--subnet-id=SUBNET_ID
POSITIONAL ARGUMENTS
Nodepool resource - node pool to create. The arguments in this group can
be used to specify the attributes of this resource. (NOTE) Some attributes
2023-05-04 10:43:54 +00:00
are not given arguments in this group but can be set in other ways.
To set the project attribute:
2022-03-01 04:29:52 +00:00
◆ 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
2023-05-04 10:43:54 +00:00
ID of the nodepool or fully qualified identifier for the nodepool.
To set the nodepool attribute:
2022-03-01 04:29:52 +00:00
▸ provide the argument node_pool on the command line.
2022-08-10 08:48:58 +00:00
This positional argument must be specified if any of the other
arguments in this group are specified.
2022-03-01 04:29:52 +00:00
--cluster=CLUSTER
2023-05-04 10:43:54 +00:00
cluster of the nodepool.
To set the cluster attribute:
2022-03-01 04:29:52 +00:00
▸ provide the argument node_pool on the command line with a fully
specified name;
▸ provide the argument --cluster on the command line.
--location=LOCATION
2023-05-04 10:43:54 +00:00
Google Cloud location for the nodepool.
To set the location attribute:
2022-03-01 04:29:52 +00:00
▸ provide the argument node_pool on the command line with a fully
specified name;
▸ provide the argument --location on the command line;
2022-08-31 09:34:57 +00:00
▸ set the property container_azure/location.
2022-03-01 04:29:52 +00:00
REQUIRED FLAGS
2023-04-26 10:24:37 +00:00
--max-pods-per-node=MAX_PODS_PER_NODE
Maximum number of pods per node.
2022-03-01 04:29:52 +00:00
--node-version=NODE_VERSION
Kubernetes version to use for the node pool.
--ssh-public-key=SSH_PUBLIC_KEY
SSH public key to use for authentication.
--subnet-id=SUBNET_ID
Subnet ID of an existing VNET to use for the node pool.
2023-04-26 10:24:37 +00:00
Node pool autoscaling
This must be specified.
--max-nodes=MAX_NODES
Maximum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
--min-nodes=MIN_NODES
Minimum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
2022-03-01 04:29:52 +00:00
OPTIONAL FLAGS
2022-10-18 11:38:19 +00:00
--annotations=ANNOTATION,[ANNOTATION,...]
Annotations for the node pool.
2022-03-01 04:29:52 +00:00
--async
Return immediately, without waiting for the operation in progress to
complete.
--azure-availability-zone=AZURE_AVAILABILITY_ZONE
Azure availability zone where the node pool will be created.
--config-encryption-key-id=CONFIG_ENCRYPTION_KEY_ID
URL the of the Azure Key Vault key (with its version) to use to encrypt
/ decrypt config data.
--config-encryption-public-key=CONFIG_ENCRYPTION_PUBLIC_KEY
RSA key of the Azure Key Vault public key to use for encrypting config
data.
2023-09-07 10:42:28 +00:00
--enable-autorepair
Enable node autorepair feature for a node pool. Use
--no-enable-autorepair to disable.
$ gcloud container azure node-pools create --enable-autorepair
Node autorepair is disabled by default.
2022-03-01 04:29:52 +00:00
--node-labels=NODE_LABEL,[NODE_LABEL,...]
2023-08-23 10:30:46 +00:00
Labels assigned to the node pool's nodes.
2022-03-01 04:29:52 +00:00
--node-taints=NODE_TAINT,[NODE_TAINT,...]
Taints assigned to nodes of the node pool. Node taint is of format
key=value:effect. Effect must be one of: NoExecute, NoSchedule,
PreferNoSchedule.
--root-volume-size=ROOT_VOLUME_SIZE
Size of the root volume. The value must be a whole number followed by a
size unit of GB for gigabyte, or TB for terabyte. If no size unit is
specified, GB is assumed.
--tags=TAG,[TAG,...]
Applies the given tags (comma separated) on the node pool. Example:
$ gcloud container azure node-pools create EXAMPLE_NODE_POOL \
--tags=tag1=one,tag2=two
--validate-only
Validate the creation of the node pool, but don't actually perform it.
--vm-size=VM_SIZE
Azure Virtual Machine Size (e.g. Standard_DS1_v).
Proxy config
--proxy-resource-group-id=PROXY_RESOURCE_GROUP_ID
The ARM ID the of the resource group containing proxy keyvault.
2022-08-10 08:48:58 +00:00
This flag argument must be specified if any of the other arguments in
this group are specified.
2022-03-01 04:29:52 +00:00
--proxy-secret-id=PROXY_SECRET_ID
The URL the of the proxy setting secret with its version.
2022-08-10 08:48:58 +00:00
This flag argument must be specified if any of the other arguments in
this group are specified.
2022-03-01 04:29:52 +00:00
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
This variant is also available:
$ gcloud alpha container azure node-pools create