values.yaml 780 B

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