-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CLI flag for aggregation timeout
One of the most common config settings that may change between different environments and test cases is the amount of time Sonobuoy will wait for results. Currently, this value is configurable but it is in a nested config structure and not terribly well documented at this time. Personally, in the past, I had projects where we had to start using a sonobuoy config-based flow instead of flags due solely to this field. This change adds the flag to make it more easy to set. Fixes #482 Signed-off-by: John Schnake <jschnake@vmware.com>
- Loading branch information
1 parent
1b56c31
commit aaa5e13
Showing
6 changed files
with
41 additions
and
8 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"Namespace":"configNS", | ||
"WorkerImage":"configImage", | ||
"ImagePullPolicy":"Never" | ||
"ImagePullPolicy":"Never", | ||
"Server":{"timeoutseconds":500} | ||
} |
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