Amir Szekely

Results 139 comments of Amir Szekely

I believe they have that with their fleet option. I think I tried using that for EC2 but it didn't work as smoothly as `RunInstances`. Might be worth another look.

I think this might be easy to implement once #216 is merged.

Falling back to non-spot should be very possible although won't be perfect. I think at first just any `Ec2Exception` can fallback to non-spot (Step Functions don't give us the option...

I don't think we will be able to use the image itself, especially if it's under a non-official owner like `summerwind`. But it did teach me about [hooks](https://github.com/actions/runner/blob/main/docs/adrs/1751-runner-job-hooks.md) which may...

What kind of criteria are you thinking for best placing? FWIW you can define your own provider by implementing `IRunnerProvider` and theoretically it can be used to build a composite...

So you want this for cases where you're over capacity on some resource like in #193? Or are there other use cases? Do you want to also be able to...

Thank you! CDK support now pretty please :)

Oh wow you can't even run multiple instances on the same dedicated host. > We're started spiking a MacOS runner here at `$WORK`. I'd love to collaborate on it! That...

@diegoaguilar is working on it in #174. Maybe you can use an aspect to set the reserved concurrency for now? I don't know if this would be a very commonly...

This one worked for me: ```typescript const version = '530'; const gpuImageBuilder = Ec2RunnerProvider.imageBuilder(this, 'GPU Image Builder'); gpuImageBuilder.addComponent(RunnerImageComponent.custom({ name: 'nvidia-drivers', commands: [ 'export DEBIAN_FRONTEND=noninteractive', `apt-get install -y linux-modules-nvidia-${version}-aws nvidia-headless-${version}`, `apt-get...