diff --git a/integration/service/create_test.go b/integration/service/create_test.go index a4373721f5..7e78b94992 100644 --- a/integration/service/create_test.go +++ b/integration/service/create_test.go @@ -43,7 +43,8 @@ func TestCreateServiceMultipleTimes(t *testing.T) { require.NoError(t, err) pollSettings := func(config *poll.Settings) { - if runtime.GOARCH == "arm" { + // It takes about ~25s to finish the multi services creation in this case per the pratical observation on arm64/arm platform + if runtime.GOARCH == "arm64" || runtime.GOARCH == "arm" { config.Timeout = 30 * time.Second config.Delay = 100 * time.Millisecond }