Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathisve/aiosre
All In One SRE Docker Container
https://github.com/mathisve/aiosre
aws docker hacktoberfest kubernetes sre
Last synced: about 2 months ago
JSON representation
All In One SRE Docker Container
- Host: GitHub
- URL: https://github.com/mathisve/aiosre
- Owner: mathisve
- License: gpl-3.0
- Created: 2021-06-29T21:53:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-25T18:19:40.000Z (over 1 year ago)
- Last Synced: 2023-09-26T07:02:00.305Z (over 1 year ago)
- Topics: aws, docker, hacktoberfest, kubernetes, sre
- Language: Shell
- Homepage: https://hub.docker.com/r/mathisve/aiosre
- Size: 48.8 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![build](https://github.com/mathisve/aiosre/actions/workflows/build-docker.yaml/badge.svg)](https://github.com/mathisve/aiosre/actions/workflows/build-docker.yaml)
[![publish docker-hub](https://github.com/mathisve/aiosre/actions/workflows/publish-docker-hub.yaml/badge.svg)](https://github.com/mathisve/aiosre/actions/workflows/publish-docker-hub.yaml)
[![publish ghcr](https://github.com/mathisve/aiosre/actions/workflows/publish-ghcr.yaml/badge.svg)](https://github.com/mathisve/aiosre/actions/workflows/publish-ghcr.yaml)# aiosre
## All In One SRE Docker Container.
Now for **amd64** and **arm64**!For all my SRE/Kubernetes/AWS needs, neatly packaged in a Docker container.
### Comes with:
- aws-cli
- terraform
- kubectl
- helm
- git
- ...## build:
```bash
docker build -t aiosre .
```## run:
```bash
docker run -it mathisve/aiosre
```
or
```bash
docker run -it ghcr.io/mathisve/aiosre
```## with AWS Credentials
```bash
docker run -it \
-v "$HOME"/.aws:/root/.aws \
mathisve/aiosre
```## with kubeconfig
```bash
docker run -it \
-v "$HOME"/.kube:/root/.kube \
mathisve/aiosre
```## with AWS Credentials and kubeconfig
```bash
docker run -it \
-v "$HOME"/.aws:/root/.aws \
-v "$HOME"/.kube:/root/.kube \
mathisve/aiosre
```