values.yaml 585 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
namespace: ollama-namespace

ollama:
  replicaCount: 1
  image: ollama/ollama:latest
  servicePort: 11434
  resources:
    limits:
      cpu: "2000m"
      memory: "2Gi"
11
      nvidia.com/gpu: "0"
12
13
14
15
16
17
18
19
20
21
22
  volumeSize: 1Gi

webui:
  replicaCount: 1
  image: ghcr.io/ollama-webui/ollama-webui:main
  servicePort: 8080
  resources:
    limits:
      cpu: "500m"
      memory: "500Mi"
  ingress:
23
24
25
26
    enabled: true
    annotations:
    # Use appropriate annotations for your Ingress controller, e.g., for NGINX:
      # nginx.ingress.kubernetes.io/rewrite-target: /
27
    host: ollama.minikube.local