forked from open-webui/open-webui
Merge pull request #757 from braveokafor/k8s-webui-pvc
Kubernetes: WebUI Persistent Volume Claim
This commit is contained in:
commit
41f3b83b13
4 changed files with 40 additions and 8 deletions
|
@ -5,11 +5,14 @@ ollama:
|
||||||
image: ollama/ollama:latest
|
image: ollama/ollama:latest
|
||||||
servicePort: 11434
|
servicePort: 11434
|
||||||
resources:
|
resources:
|
||||||
limits:
|
requests:
|
||||||
cpu: "2000m"
|
cpu: "2000m"
|
||||||
memory: "2Gi"
|
memory: "2Gi"
|
||||||
|
limits:
|
||||||
|
cpu: "4000m"
|
||||||
|
memory: "4Gi"
|
||||||
nvidia.com/gpu: "0"
|
nvidia.com/gpu: "0"
|
||||||
volumeSize: 1Gi
|
volumeSize: 30Gi
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
service:
|
service:
|
||||||
|
@ -22,16 +25,19 @@ webui:
|
||||||
image: ghcr.io/ollama-webui/ollama-webui:main
|
image: ghcr.io/ollama-webui/ollama-webui:main
|
||||||
servicePort: 8080
|
servicePort: 8080
|
||||||
resources:
|
resources:
|
||||||
limits:
|
requests:
|
||||||
cpu: "500m"
|
cpu: "500m"
|
||||||
memory: "500Mi"
|
memory: "500Mi"
|
||||||
|
limits:
|
||||||
|
cpu: "1000m"
|
||||||
|
memory: "1Gi"
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations:
|
annotations:
|
||||||
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
|
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
|
||||||
# nginx.ingress.kubernetes.io/rewrite-target: /
|
# nginx.ingress.kubernetes.io/rewrite-target: /
|
||||||
host: ollama.minikube.local
|
host: ollama.minikube.local
|
||||||
volumeSize: 1Gi
|
volumeSize: 2Gi
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
service:
|
service:
|
||||||
|
|
|
@ -20,9 +20,13 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 11434
|
- containerPort: 11434
|
||||||
resources:
|
resources:
|
||||||
limits:
|
requests:
|
||||||
cpu: "2000m"
|
cpu: "2000m"
|
||||||
memory: "2Gi"
|
memory: "2Gi"
|
||||||
|
limits:
|
||||||
|
cpu: "4000m"
|
||||||
|
memory: "4Gi"
|
||||||
|
nvidia.com/gpu: "0"
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: ollama-volume
|
- name: ollama-volume
|
||||||
mountPath: /root/.ollama
|
mountPath: /root/.ollama
|
||||||
|
@ -34,4 +38,4 @@ spec:
|
||||||
accessModes: [ "ReadWriteOnce" ]
|
accessModes: [ "ReadWriteOnce" ]
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 1Gi
|
storage: 30Gi
|
|
@ -19,10 +19,20 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
resources:
|
resources:
|
||||||
limits:
|
requests:
|
||||||
cpu: "500m"
|
cpu: "500m"
|
||||||
memory: "500Mi"
|
memory: "500Mi"
|
||||||
|
limits:
|
||||||
|
cpu: "1000m"
|
||||||
|
memory: "1Gi"
|
||||||
env:
|
env:
|
||||||
- name: OLLAMA_API_BASE_URL
|
- name: OLLAMA_API_BASE_URL
|
||||||
value: "http://ollama-service.ollama-namespace.svc.cluster.local:11434/api"
|
value: "http://ollama-service.ollama-namespace.svc.cluster.local:11434/api"
|
||||||
tty: true
|
tty: true
|
||||||
|
volumeMounts:
|
||||||
|
- name: webui-volume
|
||||||
|
mountPath: /app/backend/data
|
||||||
|
volumes:
|
||||||
|
- name: webui-volume
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: ollama-webui-pvc
|
12
kubernetes/manifest/base/webui-pvc.yaml
Normal file
12
kubernetes/manifest/base/webui-pvc.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: ollama-webui
|
||||||
|
name: ollama-webui-pvc
|
||||||
|
namespace: ollama-namespace
|
||||||
|
spec:
|
||||||
|
accessModes: ["ReadWriteOnce"]
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 2Gi
|
Loading…
Reference in a new issue