Files
fleet-infra/apps/ollama/release.yaml
Michael Thomson e90bcfeb6f ollama ingress
2026-03-20 01:18:26 -04:00

52 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:
- host: ollama.michaelthomson.dev
paths:
- path: /
pathType: Prefix
path: /
tls:
- secretName: ollama-tls
hosts:
- ollama.michaelthomson.dev