nxtgauge-gitops/apps/nxtgauge-backend-rust/base/jobs-service.yaml
Tracewebstudio Dev 7f84a4cdb3 feat(k8s): add jobs and leads services
- Add jobs service (port 9103) deployment and service
- Add leads service (port 9118) deployment and service
- Update configmap with JOBS_SERVICE_URL and LEADS_SERVICE_URL
- Update kustomization.yaml to include new resources
2026-04-12 22:04:00 +02:00

16 lines
276 B
YAML

apiVersion: v1
kind: Service
metadata:
name: nxtgauge-rust-jobs
namespace: nxtgauge
labels:
app: nxtgauge-rust-jobs
spec:
type: ClusterIP
selector:
app: nxtgauge-rust-jobs
ports:
- name: http
port: 9103
targetPort: 9103
protocol: TCP