Files
DataMate/deployment/helm/datamate/charts/runtime/templates/service.yaml
hhhhsc701 f730bd5b0c bugfix: 支持使用runtime单实例 (#118)
* bugfix: 支持使用runtime单实例
2025-12-01 19:05:50 +08:00

16 lines
396 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "runtime.fullname" . }}
labels:
{{- include "runtime.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.port }}
protocol: TCP
name: {{ .Chart.Name }}
selector:
{{- include "runtime.selectorLabels" . | nindent 4 }}