https://pulumi.com logo
e

echoing-ocean-8095

09/11/2023, 11:49 AM
hey guys! is it the place to report a bug?
m

melodic-tomato-39005

09/11/2023, 11:58 AM
The best place is to report it under the right repository at https://github.com/pulumi/, but if you’re not sure which one it is, feel free to ask here.
e

echoing-ocean-8095

09/11/2023, 12:10 PM
well, firstly I wanna say that I really like pulumi and it's very cool and intuitive working with it. secondly, I encountered multiple times a situation in which I want to update my eks node type to say x, x is supported by aws eks, but pulumi up is stuck at updating the node types and I get no indication whatsoever about the problem.
Copy code
new eks.Cluster(`${config.env}-eks-${clusterName}`, {
    ...
    instanceType: 'm5a.xlarge',
  });
Copy code
new eks.Cluster(`${config.env}-eks-${clusterName}`, {
  ...
  instanceType: 'm7a.xlarge',
});
first works, second doesn't. using ec2-instance-selector --service eks --region us-west-2 --vcpus-min 2 --memory-min 8 do tells that both of the instance types are ok.
m

melodic-tomato-39005

09/11/2023, 12:14 PM
Hi Mickey, thanks and sorry to hear about this issue. You can follow these instructions to get more logging output. If that doesn’t make the problem clear, feel free to submit an issue at https://github.com/pulumi/pulumi-aws (or https://github.com/pulumi/pulumi-aws-native if you’re using that).
e

echoing-ocean-8095

09/11/2023, 12:51 PM
thanks @melodic-tomato-39005, I'll try next time!