Skip to content

Commit

Permalink
feat(agents): address killswitch usability issues (#246)
Browse files Browse the repository at this point in the history
* Add rusoto

* Add credentials error

* Add validation for AWS creds

* Add serde_yaml and reqwest

* Add remote secrets helper

* Add deserialize test for secrets

* Add test helper

* Combine cred fetch and validate

* Combine secrets and aws. Add mocked S3 test for secrets

* Remove aws

* Fix typo in network name

* Add handler for setting env vars

* Fix config path

* Add new errors

* Remove output

* Make shared KMS client thread-safe

* Make Settings Clone

* Make killswitch run in parallel and in a single pass by channel

* Make output human-readable and more desriptive, update cli args

* Fix tests

* Add env var test

* Improve docs

* Fix warnings

* Bump clap version

* Fix test

* Change how local secrets path is picked up for testing

* Update environment options

* Output should print full txid

* Run CI on ubuntu 22.04

* Add S3 info

* Update CHANGELOG

* Update README

* Change S3 bucket name

* Differentiate between S3 environments, update names

* Remove uncessary clone
  • Loading branch information
lattejed authored Dec 17, 2022
1 parent 9f0b429 commit 58558d7
Show file tree
Hide file tree
Showing 16 changed files with 664 additions and 740 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build-docker:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -28,7 +28,7 @@ jobs:
run: cargo build --locked --workspace --all-features --verbose

test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -40,7 +40,7 @@ jobs:
run: cargo test --locked --workspace --all-features --verbose

lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -55,7 +55,7 @@ jobs:
run: cargo clippy --workspace --all-features -- -D warnings

wasm-build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
Loading

0 comments on commit 58558d7

Please sign in to comment.