]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - README.md
Add Helm installation instructions (#562)
[github/bastienwirtz/homer.git] / README.md
index 95faada1b13722bbab244c97de7c2578f1dc0830..d69796aa3494cc924d7b50cc3df5a7d432810357 100644 (file)
--- 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