-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding patch for setting ingressPort in workflow test (dapr#7331)
Signed-off-by: Shivam Kumar <[email protected]> Co-authored-by: Mukundan Sundararajan <[email protected]>
- Loading branch information
1 parent
1c87383
commit 9e2bcdc
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...-patches/release-1.12/dapr-sidecar-master/0004-Setting-IngressPort-in-workflow-test.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From a662f110afba13ce24b51e83eaa9f4bf43b9aadf Mon Sep 17 00:00:00 2001 | ||
From: Shivam Kumar <[email protected]> | ||
Date: Fri, 22 Dec 2023 19:20:51 +0530 | ||
Subject: Setting IngressPort in workflow test | ||
|
||
Signed-off-by: Shivam Kumar <[email protected]> | ||
--- | ||
tests/e2e/workflows/workflow_test.go | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/tests/e2e/workflows/workflow_test.go b/tests/e2e/workflows/workflow_test.go | ||
index 307c5456..00ed176d 100644 | ||
--- a/tests/e2e/workflows/workflow_test.go | ||
+++ b/tests/e2e/workflows/workflow_test.go | ||
@@ -52,12 +52,12 @@ func TestMain(m *testing.M) { | ||
ImageName: "e2e-workflowsapp", | ||
Replicas: 1, | ||
IngressEnabled: true, | ||
- MetricsEnabled: true, | ||
+ IngressPort: 3000, | ||
DaprMemoryLimit: "200Mi", | ||
DaprMemoryRequest: "100Mi", | ||
AppMemoryLimit: "200Mi", | ||
AppMemoryRequest: "100Mi", | ||
- AppPort: 3000, | ||
+ AppPort: -1, | ||
DebugLoggingEnabled: true, | ||
}, | ||
} | ||
-- | ||
2.34.1 | ||
|