values.yaml 763 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. namespace: ollama-namespace
  2. ollama:
  3. replicaCount: 1
  4. image: ollama/ollama:latest
  5. servicePort: 11434
  6. resources:
  7. limits:
  8. cpu: "2000m"
  9. memory: "2Gi"
  10. nvidia.com/gpu: "0"
  11. volumeSize: 1Gi
  12. nodeSelector: {}
  13. tolerations: []
  14. service:
  15. type: ClusterIP
  16. gpu:
  17. enabled: false
  18. webui:
  19. replicaCount: 1
  20. image: ghcr.io/ollama-webui/ollama-webui:main
  21. servicePort: 8080
  22. resources:
  23. limits:
  24. cpu: "500m"
  25. memory: "500Mi"
  26. ingress:
  27. enabled: true
  28. annotations:
  29. # Use appropriate annotations for your Ingress controller, e.g., for NGINX:
  30. # nginx.ingress.kubernetes.io/rewrite-target: /
  31. host: ollama.minikube.local
  32. volumeSize: 1Gi
  33. nodeSelector: {}
  34. tolerations: []
  35. service:
  36. type: NodePort