Node taints on managed node groups
Jump to navigation
Jump to search
aws eks create-nodegroup \
--cli-input-json '
{
"clusterName": "my-cluster",
"nodegroupName": "node-taints-example",
"subnets": [
"subnet-1234567890abcdef0",
"subnet-abcdef01234567890",
"subnet-021345abcdef67890"
],
"nodeRole": "arn:aws:iam::111122223333:role/AmazonEKSNodeRole",
"taints": [
{
"key": "dedicated",
"value": "gpuGroup",
"effect": "NO_SCHEDULE"
}
]
}'
- EKS Nodegroup, Managed Node Groups (MNG),
eksctl upgrade nodegroup, aws eks [ list-nodegroups | describe-nodegroup | update-nodegroup-version | create nodegroup ], check eks resources (fish function) - Kubernetes taints and tolerations,
NO_SCHEDULE, NoExecute,,module.eks_managed_node_group, Kubernetes taints and tolerations
Advertising: