open-webui/kubernetes/helm/values.yaml

71 lines
1.5 KiB
YAML
Raw Normal View History

2024-02-19 22:32:50 +00:00
nameOverride: ""
ollama:
2024-02-19 22:22:10 +00:00
annotations: {}
podAnnotations: {}
replicaCount: 1
2024-02-19 21:43:03 +00:00
image:
repository: ollama/ollama
tag: latest
pullPolicy: Always
2024-02-19 21:45:48 +00:00
resources: {}
2024-02-19 21:43:03 +00:00
persistence:
enabled: true
size: 30Gi
2024-02-19 22:18:06 +00:00
accessModes:
- ReadWriteOnce
storageClass: ""
selector: {}
annotations: {}
nodeSelector: {}
2024-02-19 22:32:50 +00:00
# -- If using a special runtime container such as nvidia, set it here.
runtimeClassName: ""
2024-02-19 21:43:03 +00:00
tolerations:
- key: nvidia.com/gpu
operator: Exists
effect: NoSchedule
service:
type: ClusterIP
2024-02-19 22:22:10 +00:00
annotations: {}
port: 80
containerPort: 11434
gpu:
2024-02-19 22:18:06 +00:00
# -- Enable additional ENV values to help Ollama discover GPU usage
enabled: false
webui:
2024-02-19 22:22:10 +00:00
annotations: {}
podAnnotations: {}
replicaCount: 1
2024-02-19 21:43:03 +00:00
image:
repository: ghcr.io/open-webui/open-webui
2024-02-19 21:55:22 +00:00
tag: latest
2024-02-19 21:43:03 +00:00
pullPolicy: Always
2024-02-19 21:45:48 +00:00
resources: {}
ingress:
2024-02-19 21:55:22 +00:00
enabled: false
2024-02-19 22:37:05 +00:00
class: ""
2024-02-19 21:45:48 +00:00
# -- Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# nginx.ingress.kubernetes.io/rewrite-target: /
annotations: {}
2024-02-19 21:45:48 +00:00
host: ""
2024-02-19 22:37:05 +00:00
tls: false
existingSecret: ""
persistence:
enabled: true
2024-02-19 23:06:53 +00:00
size: 2Gi
2024-02-19 22:18:06 +00:00
# -- If using multiple replicas, you must update accessModes to ReadWriteMany
accessModes:
- ReadWriteOnce
storageClass: ""
selector: {}
annotations: {}
nodeSelector: {}
tolerations: []
service:
type: ClusterIP
2024-02-19 22:22:10 +00:00
annotations: {}
port: 80
containerPort: 8080
nodePort: ""