feat: add Invidious deployment, services, and persistent volume claims

This commit is contained in:
2025-04-15 12:05:57 +05:30
parent f9b9ce73cd
commit 2bf2c93b16
6 changed files with 240 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
---
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
namespace: default
spec:
selector:
app: invidious
ports:
- protocol: TCP
port: 3000
targetPort: 3000
---
apiVersion: v1
kind: Service
metadata:
name: inv-sig-helper
namespace: default
spec:
selector:
app: inv-sig-helper
ports:
- protocol: TCP
port: 12999
targetPort: 12999
---
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