ma yt pot provider

This commit is contained in:
Philip Haupt
2026-03-27 23:02:35 +01:00
parent 9676a06fb7
commit cdafa1c951
2 changed files with 51 additions and 1 deletions

View File

@@ -4,3 +4,4 @@ kind: Kustomization
resources: resources:
- main.yaml - main.yaml
- yt.yaml

49
music-assistant/yt.yaml Normal file
View File

@@ -0,0 +1,49 @@
---
apiVersion: v1
kind: Service
metadata:
name: bgutil-provider
labels:
app: bgutil-provider
spec:
type: ClusterIP
selector:
app: bgutil-provider
ports:
- name: http
port: 4416
targetPort: 4416
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: bgutil-provider
labels:
app: bgutil-provider
spec:
replicas: 1
selector:
matchLabels:
app: bgutil-provider
template:
metadata:
labels:
app: bgutil-provider
spec:
containers:
- name: bgutil-provider
image: brainicism/bgutil-ytdlp-pot-provider:latest
imagePullPolicy: IfNotPresent
ports:
- name: http
containerPort: 4416
readinessProbe:
tcpSocket:
port: 4416
initialDelaySeconds: 3
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 4416
initialDelaySeconds: 10
periodSeconds: 20