-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: adds the ability to run txsim as knuu instance for testground s…
…anity test (#3244) Closes #3189 Summary of changes: - Introduces the capability to customize the resource allocation for each Node and TxSimNode individually - Enables running txsim as a knuu instance. - Allows spinning up multiple instances of txsim (e.g., one or more per validator) - Enhanced logs I have also tested all the e2e tests, and they pass successfully. --------- Co-authored-by: Callum Waters <[email protected]>
- Loading branch information
Showing
11 changed files
with
437 additions
and
33 deletions.
There are no files selected for viewing
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,8 @@ | ||
package e2e | ||
|
||
var defaultResources = Resources{ | ||
MemoryRequest: "200Mi", | ||
MemoryLimit: "200Mi", | ||
CPU: "300m", | ||
Volume: "1Gi", | ||
} |
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
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
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
Oops, something went wrong.