Update Nodegroup Config
| eks_update_nodegroup_config | R Documentation |
Updates an Amazon EKS managed node group configuration¶
Description¶
Updates 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. Currently you can update the
Kubernetes labels for a node group or the scaling configuration.
Usage¶
eks_update_nodegroup_config(clusterName, nodegroupName, labels, taints,
scalingConfig, updateConfig, clientRequestToken)
Arguments¶
clusterName[required] The name of your cluster.
nodegroupName[required] The name of the managed node group to update.
labelsThe Kubernetes
labelsto apply to the nodes in the node group after the update.taintsThe 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.
scalingConfigThe scaling configuration details for the Auto Scaling group after the update.
updateConfigThe node group update configuration.
clientRequestTokenA unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Value¶
A list with the following syntax:
list(
update = list(
id = "string",
status = "InProgress"|"Failed"|"Cancelled"|"Successful",
type = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|"AccessConfigUpdate"|"UpgradePolicyUpdate",
params = list(
list(
type = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|"ConfigurationValues"|"SecurityGroups"|"Subnets"|"AuthenticationMode"|"PodIdentityAssociations"|"UpgradePolicy",
value = "string"
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
errors = list(
list(
errorCode = "SubnetNotFound"|"SecurityGroupNotFound"|"EniLimitReached"|"IpNotAvailable"|"AccessDenied"|"OperationNotPermitted"|"VpcIdNotFound"|"Unknown"|"NodeCreationFailure"|"PodEvictionFailure"|"InsufficientFreeAddresses"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict"|"AdmissionRequestDenied"|"UnsupportedAddonModification"|"K8sResourceNotFound",
errorMessage = "string",
resourceIds = list(
"string"
)
)
)
)
)
Request syntax¶
svc$update_nodegroup_config(
clusterName = "string",
nodegroupName = "string",
labels = list(
addOrUpdateLabels = list(
"string"
),
removeLabels = list(
"string"
)
),
taints = list(
addOrUpdateTaints = list(
list(
key = "string",
value = "string",
effect = "NO_SCHEDULE"|"NO_EXECUTE"|"PREFER_NO_SCHEDULE"
)
),
removeTaints = list(
list(
key = "string",
value = "string",
effect = "NO_SCHEDULE"|"NO_EXECUTE"|"PREFER_NO_SCHEDULE"
)
)
),
scalingConfig = list(
minSize = 123,
maxSize = 123,
desiredSize = 123
),
updateConfig = list(
maxUnavailable = 123,
maxUnavailablePercentage = 123
),
clientRequestToken = "string"
)