full-dress-10026
11/22/2019, 1:10 AMeks.NodeGroup
already do that?white-balloon-205
Or doesIt does not yet - the AWS feature was just released earlier this week - we're tracking adding support here: https://github.com/pulumi/pulumi-eks/issues/278. The underlying AWS feature is exposed int healready do that?eks.NodeGroup
@pulumi/aws
library already though, so you can use that directly if needed in the meantime.full-dress-10026
11/22/2019, 1:14 AMnew aws.eks.NodeGroup(`k8s-${env}-managed-ng`, {
clusterName: eksCluster.core.cluster.name,
nodeGroupName: `k8s-${env}-managed-ng`,
nodeRoleArn: eksRole1.arn,
releaseVersion: "1.14.7-20190927",
instanceTypes: "m5.xlarge",
scalingConfig: {
desiredSize: k8sNodeCount,
minSize: 1,
maxSize: k8sNodeCount
},
subnetIds: subnetIds,
tags: envTags
});