Updates an Amazon EKS managed node group configuration
Source:R/eks_operations.R
eks_update_nodegroup_config.RdUpdates an Amazon EKS managed node group configuration. Your node group continues to function during the update. The response output includes an update ID that you can use to track the status of your node group update with the describe_update API operation. You can update the Kubernetes labels and taints for a node group and the scaling and version update configuration.
See https://www.paws-r-sdk.com/docs/eks_update_nodegroup_config/ for full documentation.
Usage
eks_update_nodegroup_config(
clusterName,
nodegroupName,
labels = NULL,
taints = NULL,
scalingConfig = NULL,
updateConfig = NULL,
nodeRepairConfig = NULL,
warmPoolConfig = NULL,
clientRequestToken = NULL
)Arguments
- clusterName
[required] The name of your cluster.
- nodegroupName
[required] The name of the managed node group to update.
- labels
The Kubernetes
labelsto apply to the nodes in the node group after the update.- taints
The Kubernetes taints to be applied to the nodes in the node group after the update. For more information, see Node taints on managed node groups.
- scalingConfig
The scaling configuration details for the Auto Scaling group after the update.
- updateConfig
The node group update configuration.
- nodeRepairConfig
The node auto repair configuration for the node group.
- warmPoolConfig
The warm pool configuration to apply to the node group. You can use this to add a warm pool to an existing node group or modify the settings of an existing warm pool.
- clientRequestToken
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.