open-webui/kubernetes/helm/values.yaml

44 lines
864 B
YAML
Raw Normal View History

2024-02-17 14:18:45 +01:00
namespace: open-webui
ollama:
replicaCount: 1
image: ollama/ollama:latest
servicePort: 11434
resources:
2024-02-17 17:20:53 +01:00
requests:
cpu: "2000m"
memory: "2Gi"
2024-02-17 17:20:53 +01:00
limits:
cpu: "4000m"
memory: "4Gi"
2023-12-24 16:49:56 +01:00
nvidia.com/gpu: "0"
2024-02-17 17:20:53 +01:00
volumeSize: 30Gi
nodeSelector: {}
tolerations: []
service:
type: ClusterIP
gpu:
enabled: false
webui:
replicaCount: 1
2024-02-17 21:18:21 +01:00
image: ghcr.io/open-webui/open-webui:main
servicePort: 8080
resources:
2024-02-17 17:20:53 +01:00
requests:
cpu: "500m"
memory: "500Mi"
2024-02-17 17:20:53 +01:00
limits:
cpu: "1000m"
memory: "1Gi"
ingress:
2023-12-28 01:49:51 +01:00
enabled: true
annotations:
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# nginx.ingress.kubernetes.io/rewrite-target: /
2024-02-17 21:18:21 +01:00
host: open-webui.minikube.local
2024-02-17 17:20:53 +01:00
volumeSize: 2Gi
nodeSelector: {}
tolerations: []
service:
type: NodePort