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,25 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-faster-whisper
|
||||
spec:
|
||||
type: {{ .Values.defaults.fasterWhisper.service.type }}
|
||||
ports:
|
||||
- port: {{ .Values.defaults.fasterWhisper.service.port }}
|
||||
targetPort: 10300
|
||||
selector:
|
||||
app: faster-whisper
|
||||
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-piper
|
||||
spec:
|
||||
type: {{ .Values.defaults.piper.service.type }}
|
||||
ports:
|
||||
- port: {{ .Values.defaults.piper.service.port }}
|
||||
targetPort: 10200
|
||||
selector:
|
||||
app: piper
|
||||
Reference in New Issue
Block a user