https://github.com/aneoconsulting/demo.kubernetes.autoscaling
https://github.com/aneoconsulting/demo.kubernetes.autoscaling
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aneoconsulting/demo.kubernetes.autoscaling
- Owner: aneoconsulting
- Created: 2022-07-01T09:37:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T17:39:50.000Z (almost 3 years ago)
- Last Synced: 2025-02-01T13:22:46.775Z (5 months ago)
- Language: HCL
- Size: 395 KB
- Stars: 0
- Watchers: 1
- 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
```