values.yaml 799 B

1234567891011121314151617181920212223242526272829303132333435
  1. ollama:
  2. gpu:
  3. enabled: true
  4. type: "nvidia"
  5. number: 1
  6. models:
  7. - mistral
  8. - mixtral
  9. - gemma
  10. ingress:
  11. enabled: true
  12. className: "nginx"
  13. annotations:
  14. acme.cert-manager.io/http01-edit-in-place: "true"
  15. cert-manager.io/cluster-issuer: "letsencrypt"
  16. nginx.org/client-max-body-size: "500m"
  17. nginx.org/proxy-connect-timeout: "60s"
  18. nginx.org/proxy-read-timeout: "60s"
  19. nginx.org/redirect-to-https: "false"
  20. ingress.kubernetes.io/ssl-redirect: "false"
  21. hosts:
  22. - host: "llm.dodges.it"
  23. paths:
  24. - path: "/"
  25. pathType: "Prefix"
  26. tls:
  27. - hosts:
  28. - llm.dodges.it
  29. secretName: llm-le-secret
  30. persistentVolume:
  31. enabled: "true"
  32. storageClass: "nfs-client"
  33. size: "200Gi"
  34. nodeSelector:
  35. nvidia.com/gpu.present: "true"