You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
565 B

# Python environment setup for testing
Install the prometheus [prometheus client](https://github.com/prometheus/client_python)
```
1 year ago
pip install prometheus-client
```
# Deployment
## Setup etcd running inmemory including backups
See [here](https://brakkee.org/site/2023/02/14/silencing-kubernetes-at-home/).
## Build the docker image
Build the docker image (after changing the docker repo URL in the `docker-compose.yaml` and in the `deployment.yaml`):
```
docker compose build
docker compose push
```
## Deploy onto your cluster
```
kubectl apply -k .
```
1 year ago