CoolFace
Apppublic

ychappyboy/open-webui

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
INSTALLATION.md36 linesDownload Raw Back to root
1### Installing Both Ollama and Open WebUI Using Kustomize2 3For cpu-only pod4 5```bash6kubectl apply -f ./kubernetes/manifest/base7```8 9For gpu-enabled pod10 11```bash12kubectl apply -k ./kubernetes/manifest13```14 15### Installing Both Ollama and Open WebUI Using Helm16 17Package Helm file first18 19```bash20helm package ./kubernetes/helm/21```22 23For cpu-only pod24 25```bash26helm install ollama-webui ./ollama-webui-*.tgz27```28 29For gpu-enabled pod30 31```bash32helm install ollama-webui ./ollama-webui-*.tgz --set ollama.resources.limits.nvidia.com/gpu="1"33```34 35Check the `kubernetes/helm/values.yaml` file to know which parameters are available for customization36