From c0f059f6e2625e3740aa0ff748f60b2a2cc918aa Mon Sep 17 00:00:00 2001 From: erik Date: Mon, 10 Apr 2023 19:28:00 +0000 Subject: [PATCH] Update 'etcd-inmemory-monitoring/README.md' --- etcd-inmemory-monitoring/README.md | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/etcd-inmemory-monitoring/README.md b/etcd-inmemory-monitoring/README.md index 4f7f85a..daf872f 100644 --- a/etcd-inmemory-monitoring/README.md +++ b/etcd-inmemory-monitoring/README.md @@ -1,3 +1,27 @@ -https://github.com/prometheus/client_python -pip install prometheus-client +# Python environment setup for testing + +Install the prometheus [prometheus client](https://github.com/prometheus/client_python) +``` +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): +``` +docker compose Build +docker compose push +``` + +## Deploy onto your cluster + +``` +kubectl apply -k . +```