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: Storage options for EC2 and ECS #624

Merged
merged 2 commits into from
Sep 29, 2024
Merged

feat: Storage options for EC2 and ECS #624

merged 2 commits into from
Sep 29, 2024

Conversation

kichik
Copy link
Member

@kichik kichik commented Sep 29, 2024

Set volume type, IOPS and throughput with storageOptions for EC2 and ECS providers.

new Ec2RunnerProvider(stack, 'EC2 Linux', {
  labels: ['ec2', 'linux', 'x64'],
  storageSize: cdk.Size.gibibytes(500),
  storageOptions: {
    volumeType: EbsDeviceVolumeType.IO1,
    iops: 30000,
  },
});

Resolves #621

Signed-off-by: github-actions <github-actions@github.com>
@mergify mergify bot merged commit dd4eed1 into main Sep 29, 2024
14 checks passed
@mergify mergify bot deleted the storage-options branch September 29, 2024 21:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Option to support EBS volume configuration
1 participant