Add faster whisper

This commit is contained in:
Tyler Perkins 2024-06-21 18:18:13 -04:00
parent 29083c5c2a
commit ab09a352fb
2 changed files with 26 additions and 0 deletions

View File

@ -9,6 +9,9 @@ spec:
- name: general-api - name: general-api
port: 8080 port: 8080
targetPort: 80 targetPort: 80
- name: faster-whisper
port: 8080
targetPort: 8080
selector: selector:
app: api-apps app: api-apps

View File

@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: fast-whisper
namespac: api-ns
labels:
app: fast-whisper
spec:
replicas: 1
selector:
matchLabels:
app: api-apps
template:
metadata:
labels:
app: api-apps
spec:
containers:
- name: fast-whisper
image: fedirz/faster-whisper-server:latest-cuda
imagePullPolicy: Always
ports:
- containerPort: 8000