diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -121,6 +121,23 @@ cp assets/config.yml.dist assets/config.yml | |||
121 | npx serve # or python -m http.server 8010 or apache, nginx ... | 121 | npx serve # or python -m http.server 8010 or apache, nginx ... |
122 | ``` | 122 | ``` |
123 | 123 | ||
124 | ### Using Helm | ||
125 | |||
126 | Thanks to [@djjudas21](https://github.com/djjudas21) [charts](https://github.com/djjudas21/charts/tree/main/charts/homer): | ||
127 | |||
128 | ```sh | ||
129 | helm repo add djjudas21 https://djjudas21.github.io/charts/ | ||
130 | helm repo update djjudas21 | ||
131 | |||
132 | # install with all defaults | ||
133 | helm install homer djjudas21/homer | ||
134 | |||
135 | # install with customisations | ||
136 | wget https://raw.githubusercontent.com/djjudas21/charts/main/charts/homer/values.yaml | ||
137 | # edit values.yaml | ||
138 | helm install homer djjudas21/homer -f values.yaml | ||
139 | ``` | ||
140 | |||
124 | ### Build manually | 141 | ### Build manually |
125 | 142 | ||
126 | ```sh | 143 | ```sh |