Add new applications: Home Assistant Voice LLMs and Ollama
- Add custom Helm chart for Home Assistant Voice LLMs integration - Add Ollama configuration for local LLM inference - Support AI voice assistant capabilities in homelab 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
defaults:
|
||||
replicaCount: 1
|
||||
fasterWhisper:
|
||||
image:
|
||||
repository: lscr.io/linuxserver/faster-whisper
|
||||
tag: "2.5.0"
|
||||
pullPolicy: Always
|
||||
service:
|
||||
type: LoadBalancer
|
||||
port: 10300
|
||||
resources:
|
||||
limits:
|
||||
cpu: "3"
|
||||
memory: "4Gi"
|
||||
requests:
|
||||
cpu: "3"
|
||||
memory: "2Gi"
|
||||
env:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
TZ: Europe/Amsterdam
|
||||
WHISPER_MODEL: Zoont/faster-whisper-large-v3-turbo-int8-ct2
|
||||
WHISPER_BEAM: 1
|
||||
WHISPER_LANG: en
|
||||
WHISPER_THREADS value: 4
|
||||
volume:
|
||||
mountPath: /config
|
||||
claimName: faster-whisper-pvc
|
||||
storage: 1Gi
|
||||
piper:
|
||||
image:
|
||||
repository: lscr.io/linuxserver/piper
|
||||
tag: "1.5.3"
|
||||
pullPolicy: Always
|
||||
service:
|
||||
type: LoadBalancer
|
||||
port: 10200
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: "4000Mi"
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: "2000Mi"
|
||||
env:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
TZ: Europe/Amsterdam
|
||||
PIPER_VOICE: en_US-lessac-medium
|
||||
PIPER_LENGTH: 1.0
|
||||
PIPER_NOISE: 0.667
|
||||
PIPER_NOISEW: 0.333
|
||||
PIPER_SPEAKER: 0
|
||||
PIPER_PROCS: 2
|
||||
volume:
|
||||
mountPath: /config
|
||||
claimName: piper-pvc
|
||||
storage: 1Gi
|
||||
|
||||
nodeSelector:
|
||||
kubernetes.io/arch: amd64
|
||||
Reference in New Issue
Block a user