1 Answer
- Newest
- Most votes
- Most comments
0
There could be multiple reasons for nodes not joining a cluster. You can try creating and attaching the nodegroup to an existing cluster with the following command once and check
eksctl create nodegroup \
--cluster cluster02 \
-- name ng01 \
--node-type t3.large \
--nodes 2 \
--nodes-min 1 \
--nodes-max 2 \
--node-private-networking \
--managed=false
Note: Use --managed=false
or --managed=true
based on your usecase.
Apart from this, Here is a detailed support-center article that you can follow to identify the cause for the failure and resolve the issue - https://aws.amazon.com/premiumsupport/knowledge-center/eks-worker-nodes-cluster/
answered 2 years ago
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago