-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add function to run a workflow, and retrieve output (or error) * use subprocess, as os.exec replaces existing also, ditch separate workflow module * use Deployment.run_workflow method from cli * w/o profile, use default cache * only update AWS_PROFILE if set * wire in force_rerun * use "is_flag" click syntax * leave "force_rerun" to the library * slashes are special, only add dash and time in microseconds * revert to nanoseconds for force-rerun timestamp * use backoff lib to add exponential backoff/retry to statedb get * add import * add accessor to exception * use predicate backoff since exception doesn't seem to be raised during failed state db get * expand comment on boto session hacking * Update src/cirrus/plugins/management/deployment.py * bump up the polling timeout * updates per PR feedback - poll_interval is user configurable - run_workflow command uses stdin instead of files - Deployment.exec changes reverted, and Deployment.call method added - stale doc strings updated * remove non-standard 'force_rerun' parameter one should use 'replace' instead of this parameter * add functions to invoke deployment lambdas * lint: black and isort * update CHANGELOG.md * handle 50 lambda limit --------- Co-authored-by: Arthur Elmes <aelmes@element84.com>
- Loading branch information
1 parent
67ba278
commit 66fabc4
Showing
5 changed files
with
198 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
click-option-group>=0.5.5 | ||
cirrus-geo>=0.9.0a0 | ||
cirrus-geo>=0.9.0 | ||
backoff>=2.2.1 |
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