View source: R/eks_operations.R
eks_create_nodegroup | R Documentation |
Creates a managed node group for an Amazon EKS cluster.
See https://www.paws-r-sdk.com/docs/eks_create_nodegroup/ for full documentation.
eks_create_nodegroup(
clusterName,
nodegroupName,
scalingConfig = NULL,
diskSize = NULL,
subnets,
instanceTypes = NULL,
amiType = NULL,
remoteAccess = NULL,
nodeRole,
labels = NULL,
taints = NULL,
tags = NULL,
clientRequestToken = NULL,
launchTemplate = NULL,
updateConfig = NULL,
capacityType = NULL,
version = NULL,
releaseVersion = NULL
)
clusterName |
[required] The name of your cluster. |
nodegroupName |
[required] The unique name to give your node group. |
scalingConfig |
The scaling configuration details for the Auto Scaling group that is created for your node group. |
diskSize |
The root device disk size (in GiB) for your node group instances. The
default disk size is 20 GiB for Linux and Bottlerocket. The default disk
size is 50 GiB for Windows. If you specify |
subnets |
[required] The subnets to use for the Auto Scaling group that is created for your
node group. If you specify |
instanceTypes |
Specify the instance types for a node group. If you specify a GPU
instance type, make sure to also specify an applicable GPU AMI type with
the |
amiType |
The AMI type for your node group. If you specify |
remoteAccess |
The remote access configuration to use with your node group. For Linux,
the protocol is SSH. For Windows, the protocol is RDP. If you specify
|
nodeRole |
[required] The Amazon Resource Name (ARN) of the IAM role to associate with your
node group. The Amazon EKS worker node |
labels |
The Kubernetes |
taints |
The Kubernetes taints to be applied to the nodes in the node group. For more information, see Node taints on managed node groups. |
tags |
Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources. |
clientRequestToken |
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. |
launchTemplate |
An object representing a node group's launch template specification.
When using this object, don't directly specify |
updateConfig |
The node group update configuration. |
capacityType |
The capacity type for your node group. |
version |
The Kubernetes version to use for your managed nodes. By default, the
Kubernetes version of the cluster is used, and this is the only accepted
specified value. If you specify |
releaseVersion |
The AMI version of the Amazon EKS optimized AMI to use with your node group. By default, the latest available AMI version for the node group's current Kubernetes version is used. For information about Linux versions, see Amazon EKS optimized Amazon Linux AMI versions in the Amazon EKS User Guide. Amazon EKS managed node groups support the November 2022 and later releases of the Windows AMIs. For information about Windows versions, see Amazon EKS optimized Windows AMI versions in the Amazon EKS User Guide. If you specify |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.