Skip to content

Commit

Permalink
moved e2e dependency out of code
Browse files Browse the repository at this point in the history
  • Loading branch information
freschri committed Mar 5, 2024
1 parent 8de27e0 commit 756b6ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"desiredSize": 2,
"minSize": 2,
"maxSize": 3,
"ebsSize": 50
"ebsSize": 50,
"ebsDeviceName": "/dev/xvda"
},
"existing.cluster.name": "single-new-eks-observability-accelerator",
"existing.kubectl.rolename": "YOUR_KUBECTL_ROLE"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function addGpuNodeGroup(gpuNodeGroupProps: GpuNodeGroupProps): blueprints.Manag
requireImdsv2: false,
blockDevices: [
{
deviceName: gpuNodeGroupProps.ebsDeviceName ?? "/dev/xvda",
deviceName: gpuNodeGroupProps.ebsDeviceName,
volume: ec2.BlockDeviceVolume.ebs(gpuNodeGroupProps.ebsSize),
}
]
Expand Down

0 comments on commit 756b6ea

Please sign in to comment.