values.yaml 870 Bytes
Newer Older
1
2
3
4
5
6
7
namespace: ollama-namespace

ollama:
  replicaCount: 1
  image: ollama/ollama:latest
  servicePort: 11434
  resources:
braveokafor's avatar
braveokafor committed
8
    requests:
9
10
      cpu: "2000m"
      memory: "2Gi"
braveokafor's avatar
braveokafor committed
11
12
13
    limits:
      cpu: "4000m"
      memory: "4Gi"
14
      nvidia.com/gpu: "0"
braveokafor's avatar
braveokafor committed
15
  volumeSize: 30Gi
16
17
18
19
20
21
  nodeSelector: {}
  tolerations: []
  service:
    type: ClusterIP
  gpu:
    enabled: false
22
23
24
25
26
27

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