Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aneoconsulting/demo.kubernetes.autoscaling
https://github.com/aneoconsulting/demo.kubernetes.autoscaling
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/aneoconsulting/demo.kubernetes.autoscaling
- Owner: aneoconsulting
- Created: 2022-07-01T09:37:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T17:39:50.000Z (over 2 years ago)
- Last Synced: 2023-09-14T20:55:29.426Z (over 1 year ago)
- Language: HCL
- Size: 395 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo for Autoscaling in Kubernetes
## How to deploy
The documentation on how to deploy this demo can be found [here](./deployment/README.md)
## How to populate SQS queue
This repository provides a client that put and delete messages in an SQS queue.
The first way to use it is to install dotnet and run the application such as:
```
cd client/dotnet run -- -q myQueue -r us-east-3
```To find more informations on how to use the client can be found by running the following command:
```
dotnet run -- -h
```The second possibility is to run the docker image built in this repository:
```
docker run --rm -v ${HOME}/.aws/credentials:/root/.aws/credentials -it dockerhubaneo/demo_kas_client:0.0.1-SNAPSHOT.20.01cc4e9 -q myQueue -r us-east-3
```