chore(aws-eks): update integration test stacks to be env agnostic#19769
chore(aws-eks): update integration test stacks to be env agnostic#19769mergify[bot] merged 3 commits intoaws:masterfrom corymhall:corymhall/fix-eks-integ
Conversation
comcalvi
left a comment
There was a problem hiding this comment.
looks great! Just one minor comment.
packages/@aws-cdk/aws-eks/test/integ.eks-cluster-handlers-vpc.ts
Outdated
Show resolved
Hide resolved
| }); | ||
|
|
||
| // just need one nat gateway to simplify the test | ||
| this.vpc = new ec2.Vpc(this, 'Vpc', { maxAzs: 3, natGateways: 1 }); |
There was a problem hiding this comment.
for environment agnostic stacks maxAzs can only be 2.
| const vpc = new ec2.Vpc(this, 'Vpc', { maxAzs: 3, natGateways: 1 }); | ||
| const vpc = new ec2.Vpc(this, 'Vpc', { maxAzs: 2, natGateways: 1 }); |
There was a problem hiding this comment.
why change this from 3 to 2?
| const vpc = new ec2.Vpc(this, 'Vpc', { maxAzs: 3, natGateways: 1 }); | ||
| const vpc = new ec2.Vpc(this, 'Vpc', { maxAzs: 2, natGateways: 1 }); |
There was a problem hiding this comment.
why change this from 3 to 2?
comcalvi
left a comment
There was a problem hiding this comment.
Thanks Cory, nice work!
|
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
|
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
…s#19769) ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/master/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/master/INTEGRATION_TESTS.md)? * [ ] Did you use `cdk-integ` to deploy the infrastructure and generate the snapshot (i.e. `cdk-integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
All Submissions:
Adding new Unconventional Dependencies:
New Features
cdk-integto deploy the infrastructure and generate the snapshot (i.e.cdk-integwithout--dry-run)?By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license