Mikhail Shapirov
Mikhail Shapirov
Please consider using `FargateClusterProvider` - this won't create any node groups. Please see example of using FargateClusterProvider [here](https://github.com/aws-samples/cdk-eks-blueprints-patterns/blob/main/lib/fargate-construct/index.ts). You can then deploy Karpenter and since Fargate is using node per...
The error is indicative of a version mismatch between CDK that you have installed globally and the version used by the blueprints. Blueprints has a dependency on CDK 2.115.0, see...
@youngjeong46 please take a look when you get a chance and let me know on the LOE.
Defect, will be fixed in the next patch.
@thpham we can potentially look into creating service catalog product/portfolio automatically from CDK. E.g. https://catalog.us-east-1.prod.workshops.aws/workshops/d40750d7-a330-49be-9945-cde864610de9/en-US/4-builders-devs/sc-cdk
> would it be possible to just return an higher order `Construct` to be instantiated then in a extended `ProductStack` class ? Yes,it is possible and requires refactoring of the...
@flo-mair making sure I understand - this is brand new cluster that you are provisioning and not an upgrade of an existing cluster, e.g. moving from lower versions of Karpenter...
@thpham we had a similar request internally, hence introduced a construct, however adding the ProductStack support directly into the blueprint is still beneficial. We have the main stack with EKSBlueprint,...
@DeveloperC286 thank you for your feedback. You can upgrade the version of CDK to any version without issues if you use the override functionality as shown [here](https://github.com/aws-samples/cdk-eks-blueprints-patterns/blob/main/package.json#L50). We should document...
@DeveloperC286 1.14.0 release is out and should have the fix to address this issue. CDK depedency is moved to `peerDependencies`. You can read more on the behavior [here](https://aws-quickstart.github.io/cdk-eks-blueprints/getting-started/#configure-your-project). This approach...