nxtgauge-gitops/apps/nxtgauge-backend-rust/base/leads-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
279 B
YAML

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