From b7cd8f9482e6836a96b354b11595b03b9c3d67cd Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Tue, 20 Dec 2022 21:19:38 +0100 Subject: [PATCH] Add Helm installation instructions (#562) --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 95faada..d69796a 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,23 @@ cp assets/config.yml.dist assets/config.yml npx serve # or python -m http.server 8010 or apache, nginx ... ``` +### Using Helm + +Thanks to [@djjudas21](https://github.com/djjudas21) [charts](https://github.com/djjudas21/charts/tree/main/charts/homer): + +```sh +helm repo add djjudas21 https://djjudas21.github.io/charts/ +helm repo update djjudas21 + +# install with all defaults +helm install homer djjudas21/homer + +# install with customisations +wget https://raw.githubusercontent.com/djjudas21/charts/main/charts/homer/values.yaml +# edit values.yaml +helm install homer djjudas21/homer -f values.yaml +``` + ### Build manually ```sh -- 2.41.0