Files
service-catalog/manifests/helm/mlflow/1.9.0/templates/service.yaml
T
2026-04-22 17:08:02 +09:00

20 lines
517 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "mlflow.fullname" . }}
labels:
{{- include "mlflow.labels" . | nindent 4 }}
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.containerPortName }}
protocol: TCP
name: {{ .Values.service.name }}
selector:
{{- include "mlflow.selectorLabels" . | nindent 4 }}