https://github.com/strrl/awsssmchaosrunner-cli
A simple wrapper for awsssmchaosrunner, make it runs easier.
https://github.com/strrl/awsssmchaosrunner-cli
Last synced: about 1 month ago
JSON representation
A simple wrapper for awsssmchaosrunner, make it runs easier.
- Host: GitHub
- URL: https://github.com/strrl/awsssmchaosrunner-cli
- Owner: STRRL
- License: apache-2.0
- Created: 2021-04-28T09:12:40.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-02T09:52:18.000Z (almost 4 years ago)
- Last Synced: 2025-03-19T08:46:03.564Z (about 1 month ago)
- Language: Kotlin
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# awsssmchaosrunner-cli
A simple wrapper for awsssmchaosrunner, make it runs easier.## Usage
Using that tool with localstack:
You could start up localstack in docker:
```shell
docker run --rm -it -p 4566:4566 -p 4571:4571 localstack/localstack
```Then run an example chaos, remember to replace the `` to ths IP of localstack container:
```shell
docker run --rm \
-v $PWD/example:/example \
-e AWS_ACCESS_KEY_ID=test \
-e AWS_SECRET_ACCESS_KEY=test \
strrl/awsssmchaosrunner-cli:latest \
attack \
--region=us-east-1a \
--endpoint-url=http://:4566 \
-c /example/example-cpu-hog.json
```> Note: here are some issues with documents on localstack, like [#981](https://github.com/localstack/localstack/issues/981), it returns the bad datetime in response. I'm going to contact upstream for a solution.