aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-12-20 21:19:38 +0100
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-12-20 21:19:38 +0100
commitb7cd8f9482e6836a96b354b11595b03b9c3d67cd (patch)
tree9058411f48b6e15597a114cd4f98169e604b11a9
parent49c2023b8e7eea6b28113b43beca29ee865faebc (diff)
downloadhomer-b7cd8f9482e6836a96b354b11595b03b9c3d67cd.tar.gz
homer-b7cd8f9482e6836a96b354b11595b03b9c3d67cd.tar.zst
homer-b7cd8f9482e6836a96b354b11595b03b9c3d67cd.zip
Add Helm installation instructions (#562)
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
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
121npx serve # or python -m http.server 8010 or apache, nginx ... 121npx serve # or python -m http.server 8010 or apache, nginx ...
122``` 122```
123 123
124### Using Helm
125
126Thanks to [@djjudas21](https://github.com/djjudas21) [charts](https://github.com/djjudas21/charts/tree/main/charts/homer):
127
128```sh
129helm repo add djjudas21 https://djjudas21.github.io/charts/
130helm repo update djjudas21
131
132# install with all defaults
133helm install homer djjudas21/homer
134
135# install with customisations
136wget https://raw.githubusercontent.com/djjudas21/charts/main/charts/homer/values.yaml
137# edit values.yaml
138helm install homer djjudas21/homer -f values.yaml
139```
140
124### Build manually 141### Build manually
125 142
126```sh 143```sh