2024-05-06 10:15:27 +02:00

29 lines
552 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: whisper
name: whisper
spec:
replicas: 1
selector:
matchLabels:
app: whisper
template:
metadata:
labels:
app: whisper
spec:
containers:
- image: linuxserver/faster-whisper:latest
name: whisper
env:
- name: TZ
value: Europe/Berlin
ports:
- name: http
containerPort: 10300
protocol: TCP
resources: {}
restartPolicy: Always