Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(eks): managed nodegroup with custom AMI and launch template support #9881

Merged
merged 15 commits into from
Sep 9, 2020
Prev Previous commit
Next Next commit
Merge branch 'master' into eks-custom-ami-ng
pahud authored Aug 23, 2020
commit 78c7a48e1b13e163def7882b23a052c0bbb80f38
2 changes: 2 additions & 0 deletions packages/@aws-cdk/aws-eks/test/integ.eks-cluster.ts
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
import * as ec2 from '@aws-cdk/aws-ec2';
import * as iam from '@aws-cdk/aws-iam';
import { App, CfnOutput, Duration, Token, Fn } from '@aws-cdk/core';
import * as kms from '@aws-cdk/aws-kms';
import * as eks from '../lib';
import * as hello from './hello-k8s';
import { Pinger } from './pinger/pinger';
@@ -32,6 +33,7 @@ class EksClusterStack extends TestStack {
mastersRole,
defaultCapacity: 2,
version: eks.KubernetesVersion.V1_17,
secretsEncryptionKey,
});

this.assertFargateProfile();
You are viewing a condensed version of this merge commit. You can view the full changes here.