From 9f6312d40bf0a41622b1d3154fd8da2fa0951809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sun, 25 May 2025 17:06:33 +0000 Subject: [PATCH] moved whisper to chimera --- services/wyoming/whisper.kubernetes-deployment.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/services/wyoming/whisper.kubernetes-deployment.yaml b/services/wyoming/whisper.kubernetes-deployment.yaml index 9f980ea..9c043af 100644 --- a/services/wyoming/whisper.kubernetes-deployment.yaml +++ b/services/wyoming/whisper.kubernetes-deployment.yaml @@ -1,4 +1,7 @@ # currently hosted on chimera k3s cluster +# Add nodeSelector to schedule the pod on specific nodes +# Example: only schedule on nodes labeled with kubernetes.io/hostname=chimera +# Adjust the key/value as needed for your cluster apiVersion: apps/v1 kind: Deployment @@ -12,11 +15,20 @@ spec: selector: matchLabels: app: wyoming-whisper + + template: metadata: labels: app: wyoming-whisper spec: + #nodeSelector: + #kubernetes.io/hostname: chimera-flashgordon + tolerations: + - key: "dedicated" + value: "reserved" + effect: "NoSchedule" + containers: - name: wyoming-whisper image: linuxserver/faster-whisper