2023-01-20 23:44:33 +00:00
|
|
|
apiVersion: apps/v1
|
2023-01-20 23:40:33 +00:00
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
2023-01-21 00:04:21 +00:00
|
|
|
name: rtmp-adr
|
2023-01-20 23:53:56 +00:00
|
|
|
labels:
|
|
|
|
app: rtmp-adr
|
2023-01-20 23:40:33 +00:00
|
|
|
spec:
|
2023-01-20 23:57:13 +00:00
|
|
|
replicas: 1
|
2023-01-20 23:53:56 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: rtmp-adr
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: rtmp-adr
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: rtmp-adr
|
2023-01-21 00:05:41 +00:00
|
|
|
image: git.oe74.net/adelorenzo/rtmp-adr:0.4
|
2023-01-20 23:53:56 +00:00
|
|
|
imagePullPolicy: IfNotPresent
|
2023-01-20 23:59:51 +00:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: rtmp-adr-svc
|
|
|
|
spec:
|
|
|
|
type: NodePort
|
|
|
|
selector:
|
2023-01-21 00:01:55 +00:00
|
|
|
app: rtmp-adr
|
2023-01-20 23:59:51 +00:00
|
|
|
ports:
|
|
|
|
- port: 8080
|
|
|
|
targetPort: 8080
|
|
|
|
nodePort: 30080
|