You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This inflates the number of codebuild projects, complicates the end-user understanding of what happens in those assets and there is no way to control if the assets can be stored over s3. We are provisioning a lot of eks-clusters and wondering if this way is good.
Contrary if we provision the cluster directly, no assets are created at all
const cluster = new eks.Cluster(this, 'demogo-cluster', {
clusterName: 'demo',
version: eks.KubernetesVersion.V1_21,
mastersRole: clusterAdmin,
defaultCapacity: 2
});
cluster.addNodegroupCapacity('spot-ng', {
instanceTypes: [
new ec2.InstanceType('m5.large'),
new ec2.InstanceType('m5a.large')
],
minSize: 2,
capacityType: eks.CapacityType.SPOT
})
Expected Behavior
No of assets has to optimize
Control the output of assets to atleast s3
Some sort of asset bundling
Current Behavior
The asset creation and handling is like blackbox
Reproduction Steps
Provided as part of issue discription
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.76.0
EKS Blueprints Version
1.70.0
Node.js Version
18.16
Environment details (OS name and version, etc.)
Macos arm
Other information
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Considering a simple pipeline creation with just cluster builder
The resulting pipeline creates additional 9 codebuild projects such as
This inflates the number of codebuild projects, complicates the end-user understanding of what happens in those assets and there is no way to control if the assets can be stored over s3. We are provisioning a lot of eks-clusters and wondering if this way is good.
Contrary if we provision the cluster directly, no assets are created at all
Expected Behavior
Current Behavior
The asset creation and handling is like blackbox
Reproduction Steps
Provided as part of issue discription
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.76.0
EKS Blueprints Version
1.70.0
Node.js Version
18.16
Environment details (OS name and version, etc.)
Macos arm
Other information
No response
The text was updated successfully, but these errors were encountered: