jenkinsci / amazon-ecs-plugin

Amazon EC2 Container Service Plugin for Jenkins
https://plugins.jenkins.io/amazon-ecs
MIT License
192 stars 227 forks source link

Add possibility to override ephemeralStorageSizeInGiB from declarative #337

Closed Koziol-ku closed 6 months ago

Koziol-ku commented 8 months ago

What feature do you want to see added?

There is no possibility to override ephemeralStorageSizeInGiB using declarative pipeline syntax like

 agent {
        ecs {
            inheritFrom 'example-agent'
            cpu 1024
            memory 2048
            ephemeralStorageSizeInGiB 50
            image 'jenkins/inbound-agent:latest'
            }
        }

It's pretty easy to add this functionality as it's already done for scripted pipelines.

Upstream changes

No response