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

webui:
  replicaCount: 1
Bjørn Jørgensen's avatar
Bjørn Jørgensen committed
24
  image: ghcr.io/open-webui/open-webui:main
25
  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
    enabled: true
34
    annotations: {}
35
36
    # 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
38
39
40
  persistence:
    enabled: true
    size: 2Gi
41
42
43
  nodeSelector: {}
  tolerations: []
  service:
44
45
46
47
    type: ClusterIP
    port: 80
    containerPort: 8080
    nodePort: ""