Files
data-engine/k8s/service.yaml

18 lines
283 B
YAML
Raw Normal View History

2026-04-16 09:26:00 +08:00
apiVersion: v1
kind: Service
metadata:
name: data-engine-service
namespace: default
labels:
app: data-engine
spec:
type: NodePort
selector:
app: data-engine
ports:
- name: http
2026-04-22 09:39:05 +08:00
port: 3002
targetPort: 3002
nodePort: 30302
2026-04-16 09:26:00 +08:00
protocol: TCP