59 lines
894 B
YAML
59 lines
894 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: invidious-db-service
|
|
namespace: default
|
|
spec:
|
|
selector:
|
|
app: invidious-db
|
|
ports:
|
|
- protocol: TCP
|
|
port: 5432
|
|
targetPort: 5432
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: invidious-companion-service
|
|
namespace: default
|
|
spec:
|
|
selector:
|
|
app: invidious-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
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: invidious-companion-ext-service
|
|
namespace: default
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: invidious-companion
|
|
ports:
|
|
- port: 8282
|
|
targetPort: 8282
|
|
nodePort: 30082
|
|
protocol: TCP
|