I am using aws-cdk and aws-eks, while creating the cluster and giving it a nodegroup capacity I cant find a way to provide names for the ec2 instances, they are empty in the AWS ec2 console.
This is the code I am using:
cluster = aws_eks.Cluster(self, "MetricsCluster",
cluster_name=f"metrics-cluster-{stage}",
version=aws_eks.KubernetesVersion.V1_17,
default_capacity=0)
cluster.add_nodegroup_capacity("MetricsNodes",
nodegroup_name=f"eks-nodes-{stage}",
instance_type=aws_ec2.InstanceType("t3a.large"),
desired_size=2,
min_size=1,
max_size=3)
I also tried providing it with tags:
tags={"Key": "Name","Value": f"metrics-nodes-{stage}"}
But it didn't help.
Is there another option to do it? Thanks!
Use the tag function from aws_cdk.core to tag all resource associated to the construct.