Hi, in EKS modules, i cannot apply label to defau...
# general
b
Hi, in EKS modules, i cannot apply label to default nodegroup
Copy code
const cluster = new eks.Cluster('staging-auth', {
  nodeAmiId: 'ami-0bfedee6a7845c26d',
  vpcId,
  subnetIds: subnet.split(','),
  deployDashboard: false,
  instanceType: 't2.medium',
  desiredCapacity: 2,
  nodeAssociatePublicIpAddress: false,
  minSize: 2,
  maxSize: 2,
  nodekeyName: 'aws_tokyo',
  storageClasses: 'gp2',
  labels: {
    cluster: 'proxy',
  },
});
is somethings in my conf ?
w
This is tracked in https://github.com/pulumi/pulumi-eks/issues/74, and is something we expect to add very soon.
d
@white-balloon-205 Is there any workaround available for this ?
w
Probably not without forking the library and making targeted changes. A PR to add this support should be reasonably easy if anyone is interested in contributing it. Else I know this is something @breezy-hamburger-69619 is planning to work on soon.
d
I'm hoping this gets picked up very soon, we are blocked on this.