sparse-intern-71089
05/11/2020, 3:44 PMbland-lamp-16797
05/11/2020, 3:48 PMeksctl --managed
https://www.terraform.io/docs/providers/aws/r/eks_node_group.htmlbillowy-army-68599
bland-lamp-16797
05/11/2020, 3:56 PMhundreds-lizard-14182
05/11/2020, 5:04 PMbillowy-army-68599
hundreds-lizard-14182
05/11/2020, 5:28 PMimport * as eks from "@pulumi/eks";
const cluster = new eks.Cluster("my-cluster", {
  desiredCapacity: 1,
  minSize: 1,
  maxSize: 2,
  nodeGroupOptions:{
    
  },
  instanceType: "t3.2xlarge",
  deployDashboard: true,
  enabledClusterLogTypes: [
    "api",
    "audit",
    "authenticator",
  ],
});
export const kubeconfig = cluster.kubeconfig;
My objective is to create a managed node group here. That node group is maintained by AWS (all worker nodes) but I want to control scaling.billowy-army-68599
createdManagedNodeGroup
https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/eks/#createManagedNodeGroup
I'll need to construct an example if you need help, but I believe you should be able to do cluster.createdManagedNodeGroup