From 94671e99e131e9bbd86022d389cff2f6d7902867 Mon Sep 17 00:00:00 2001 From: aiordache Date: Fri, 24 Jul 2020 09:46:52 +0200 Subject: [PATCH] improve error message for unsupported resource combination Signed-off-by: aiordache Signed-off-by: Nicolas De Loof --- ecs/pkg/amazon/backend/cloudformation_test.go | 2 +- ecs/pkg/amazon/backend/convert.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecs/pkg/amazon/backend/cloudformation_test.go b/ecs/pkg/amazon/backend/cloudformation_test.go index c8622a1ac..679d3fe6e 100644 --- a/ecs/pkg/amazon/backend/cloudformation_test.go +++ b/ecs/pkg/amazon/backend/cloudformation_test.go @@ -167,7 +167,7 @@ services: memory: 2043248M `) _, err := Backend{}.Convert(model) - assert.ErrorContains(t, err, "unable to find cpu/mem for the required resources") + assert.ErrorContains(t, err, "The resources requested are not supported by ECS/Fargate") } func TestLoadBalancerTypeNetwork(t *testing.T) { diff --git a/ecs/pkg/amazon/backend/convert.go b/ecs/pkg/amazon/backend/convert.go index 828618b45..49b9b4454 100644 --- a/ecs/pkg/amazon/backend/convert.go +++ b/ecs/pkg/amazon/backend/convert.go @@ -159,7 +159,7 @@ func toLimits(service types.ServiceConfig) (string, string, error) { } } } - return "", "", fmt.Errorf("unable to find cpu/mem for the required resources") + return "", "", fmt.Errorf("The resources requested are not supported by ECS/Fargate") } func toContainerReservation(service types.ServiceConfig) (string, int, error) {