From 00d029dabd9e64f33a494de35b256db2486c8add Mon Sep 17 00:00:00 2001 From: Gorden Mende Date: Fri, 7 Nov 2025 11:55:27 +0000 Subject: [PATCH] changed filenames --- havoice/havoice-piper-deployment.yaml | 45 +++++++++++++++++++++++ havoice/havoice-whisper-deployment.yaml | 47 +++++++++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 havoice/havoice-piper-deployment.yaml create mode 100644 havoice/havoice-whisper-deployment.yaml diff --git a/havoice/havoice-piper-deployment.yaml b/havoice/havoice-piper-deployment.yaml new file mode 100644 index 0000000..07e0a2d --- /dev/null +++ b/havoice/havoice-piper-deployment.yaml @@ -0,0 +1,45 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kompose.cmd: kompose convert -f compose.yaml + kompose.version: 1.34.0 (cbf2835db) + labels: + io.kompose.service: havoice-piper + name: havoice-piper + namespace: havoice +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: havoice-piper + strategy: + type: Recreate + template: + metadata: + annotations: + kompose.cmd: kompose convert -f compose.yaml + kompose.version: 1.34.0 (cbf2835db) + labels: + io.kompose.service: havoice-piper + spec: + containers: + - args: + - --voice + - de_DE-ramona-low + env: + - name: TZ + value: Europe/Berlin + image: rhasspy/wyoming-piper:1.3.2 + name: havoice-piper + ports: + - containerPort: 10200 + protocol: TCP + volumeMounts: + - mountPath: /data + name: havoice-piper-claim + restartPolicy: Always + volumes: + - name: havoice-piper-claim + persistentVolumeClaim: + claimName: havoice-piper-claim diff --git a/havoice/havoice-whisper-deployment.yaml b/havoice/havoice-whisper-deployment.yaml new file mode 100644 index 0000000..e77fdb3 --- /dev/null +++ b/havoice/havoice-whisper-deployment.yaml @@ -0,0 +1,47 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kompose.cmd: kompose convert -f compose.yaml + kompose.version: 1.34.0 (cbf2835db) + labels: + io.kompose.service: havoice-whisper + name: havoice-whisper + namespace: havoice +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: havoice-whisper + strategy: + type: Recreate + template: + metadata: + annotations: + kompose.cmd: kompose convert -f compose.yaml + kompose.version: 1.34.0 (cbf2835db) + labels: + io.kompose.service: havoice-whisper + spec: + containers: + - args: + - --model + - tiny + - --language + - de + env: + - name: TZ + value: Europe/Berlin + image: rhasspy/wyoming-whisper:2.5.0 + name: havoice-whisper + ports: + - containerPort: 10300 + protocol: TCP + volumeMounts: + - mountPath: /data + name: havoice-whisper-claim + restartPolicy: Always + volumes: + - name: havoice-whisper-claim + persistentVolumeClaim: + claimName: havoice-whisper-claim