From 60c4a5398781d9889f462c9d066d22a4255507a3 Mon Sep 17 00:00:00 2001 From: Tetsuya Kikuchi <97105818+t-kikuc@users.noreply.github.com> Date: Tue, 23 Jul 2024 09:05:00 +0900 Subject: [PATCH] add EphemeralStorage to RegisterTaskDefinition() (#5063) Signed-off-by: t-kikuc --- pkg/app/piped/platformprovider/ecs/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/app/piped/platformprovider/ecs/client.go b/pkg/app/piped/platformprovider/ecs/client.go index 0caebdc2bb..8a023beb95 100644 --- a/pkg/app/piped/platformprovider/ecs/client.go +++ b/pkg/app/piped/platformprovider/ecs/client.go @@ -187,6 +187,7 @@ func (c *client) RegisterTaskDefinition(ctx context.Context, taskDefinition type NetworkMode: taskDefinition.NetworkMode, Volumes: taskDefinition.Volumes, RuntimePlatform: taskDefinition.RuntimePlatform, + EphemeralStorage: taskDefinition.EphemeralStorage, // Requires defined at task level in case Fargate is used. Cpu: taskDefinition.Cpu, Memory: taskDefinition.Memory,