Skip to content

Commit

Permalink
revert service.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianEllwood committed Sep 2, 2024
1 parent 95b1ad2 commit 72d3fb1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions chart/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: { { include "mlflow.fullname" . } }
labels: { { - include "mlflow.labels" . | nindent 4 } }
name: {{ include "mlflow.fullname" . }}
labels:
{{- include "mlflow.labels" . | nindent 4 }}
spec:
type: { { .Values.service.type } }
type: {{ .Values.service.type }}
ports:
- port: { { .Values.service.port } }
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector: { { - include "mlflow.selectorLabels" . | nindent 4 } }
selector:
{{- include "mlflow.selectorLabels" . | nindent 4 }}

0 comments on commit 72d3fb1

Please sign in to comment.