43 lines
608 B
YAML
43 lines
608 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: invidious-db
|
|
namespace: invidious
|
|
spec:
|
|
selector:
|
|
app: invidious-db
|
|
ports:
|
|
- protocol: TCP
|
|
port: 5432
|
|
targetPort: 5432
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: companion
|
|
namespace: default
|
|
spec:
|
|
selector:
|
|
app: companion
|
|
ports:
|
|
- protocol: TCP
|
|
port: 8282
|
|
targetPort: 8282
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: invidious-service
|
|
namespace: default
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: invidious
|
|
ports:
|
|
- port: 3000
|
|
targetPort: 3000
|
|
nodePort: 3111
|
|
protocol: TCP
|