From: Bastien Wirtz Date: Tue, 20 Dec 2022 20:19:38 +0000 (+0100) Subject: Add Helm installation instructions (#562) X-Git-Tag: v23.02.1~3 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=b7cd8f9482e6836a96b354b11595b03b9c3d67cd;p=github%2Fbastienwirtz%2Fhomer.git Add Helm installation instructions (#562) --- 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