ma yt pot provider
This commit is contained in:
@@ -4,3 +4,4 @@ kind: Kustomization
|
||||
|
||||
resources:
|
||||
- main.yaml
|
||||
- yt.yaml
|
||||
|
||||
49
music-assistant/yt.yaml
Normal file
49
music-assistant/yt.yaml
Normal 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
|
||||
Reference in New Issue
Block a user