- 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
16 lines
276 B
YAML
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
|