feat: add jellystat deployment, database service, and persistent volume claim configurations

This commit is contained in:
2025-04-16 04:57:59 +05:30
parent f935971632
commit 47bbfdda75
4 changed files with 145 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
---
apiVersion: v1
kind: Service
metadata:
name: jellystat-service
namespace: default
spec:
type: NodePort
selector:
app: jellystat
ports:
- port: 3000
targetPort: 3000
nodePort: 3001
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: jellystat-db-service
namespace: default
spec:
selector:
app: jellystat-db
ports:
- protocol: TCP
port: 5432
targetPort: 5432