values.yaml 842 Bytes
Newer Older
1
2
3
4
5
ollama:
  replicaCount: 1
  image: ollama/ollama:latest
  servicePort: 11434
  resources:
braveokafor's avatar
braveokafor committed
6
    requests:
7
8
      cpu: "2000m"
      memory: "2Gi"
braveokafor's avatar
braveokafor committed
9
10
11
    limits:
      cpu: "4000m"
      memory: "4Gi"
12
      nvidia.com/gpu: "0"
braveokafor's avatar
braveokafor committed
13
  volumeSize: 30Gi
14
15
16
17
18
19
  nodeSelector: {}
  tolerations: []
  service:
    type: ClusterIP
  gpu:
    enabled: false
20
21
22

webui:
  replicaCount: 1
Bjørn Jørgensen's avatar
Bjørn Jørgensen committed
23
  image: ghcr.io/open-webui/open-webui:main
24
25
  servicePort: 8080
  resources:
braveokafor's avatar
braveokafor committed
26
    requests:
27
28
      cpu: "500m"
      memory: "500Mi"
braveokafor's avatar
braveokafor committed
29
30
31
    limits:
      cpu: "1000m"
      memory: "1Gi"
32
  ingress:
33
34
35
36
    enabled: true
    annotations:
    # Use appropriate annotations for your Ingress controller, e.g., for NGINX:
      # nginx.ingress.kubernetes.io/rewrite-target: /
Bjørn Jørgensen's avatar
Bjørn Jørgensen committed
37
    host: open-webui.minikube.local
braveokafor's avatar
braveokafor committed
38
  volumeSize: 2Gi
39
40
41
  nodeSelector: {}
  tolerations: []
  service:
duhow's avatar
duhow committed
42
    type: NodePort