add db, ingress, pvc, secrets, svc, and deployment for jellystat
All checks were successful
Validate Kubernetes Manifests / kubeconform (pull_request) Successful in 15s

This commit is contained in:
2025-12-28 07:31:21 +05:30
parent 7910148144
commit 27b6de3641
6 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
---
apiVersion: v1
kind: Service
metadata:
name: jellystat-service
namespace: monitoring
spec:
selector:
app: jellystat
ports:
- port: 3000
targetPort: 3000
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: jellystat-db
namespace: monitoring
spec:
selector:
app: jellystat-db
ports:
- port: 5432
targetPort: 5432
clusterIP: None