mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 00:32:05 +00:00
44 lines
864 B
YAML
44 lines
864 B
YAML
namespace: open-webui
|
|
|
|
ollama:
|
|
replicaCount: 1
|
|
image: ollama/ollama:latest
|
|
servicePort: 11434
|
|
resources:
|
|
requests:
|
|
cpu: "2000m"
|
|
memory: "2Gi"
|
|
limits:
|
|
cpu: "4000m"
|
|
memory: "4Gi"
|
|
nvidia.com/gpu: "0"
|
|
volumeSize: 30Gi
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
service:
|
|
type: ClusterIP
|
|
gpu:
|
|
enabled: false
|
|
|
|
webui:
|
|
replicaCount: 1
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
servicePort: 8080
|
|
resources:
|
|
requests:
|
|
cpu: "500m"
|
|
memory: "500Mi"
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "1Gi"
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
|
|
# nginx.ingress.kubernetes.io/rewrite-target: /
|
|
host: open-webui.minikube.local
|
|
volumeSize: 2Gi
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
service:
|
|
type: NodePort |