mirror of
https://github.com/michaelthomson0797/fleet-infra.git
synced 2026-03-22 03:27:21 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: ollama
|
|
namespace: ollama
|
|
spec:
|
|
chart:
|
|
spec:
|
|
chart: ollama
|
|
version: 1.x
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: otwld
|
|
interval: 15m
|
|
releaseName: ollama
|
|
values:
|
|
runtimeClassName: nvidia
|
|
ollama:
|
|
gpu:
|
|
# -- Enable GPU integration
|
|
enabled: true
|
|
|
|
# -- GPU type: 'nvidia' or 'amd'
|
|
type: 'nvidia'
|
|
|
|
# -- Specify the number of GPU to 1
|
|
number: 1
|
|
|
|
nvidiaResource: "nvidia.com/gpu-all"
|
|
|
|
# -- List of models to pull at container startup
|
|
models:
|
|
pull:
|
|
- qwen3.5:9b
|
|
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
hosts:
|
|
- ollama.michaelthomson.dev
|
|
path: /
|
|
tls:
|
|
- secretName: ollama-tls
|
|
hosts:
|
|
- ollama.michaelthomson.dev
|