Skip to content

Commit

Permalink
fix: typos in service template (#147)
Browse files Browse the repository at this point in the history
This commit fixes a typo in the service template. The loadBalancerIP
field was not properly formatted and was causing the chart to fail
when that value was set.
  • Loading branch information
nobbs authored Mar 6, 2024
1 parent af63d80 commit ef9558f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/qdrant/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
spec:
type: {{ .Values.service.type | default "ClusterIP" }}
{{- if .Values.service.loadBalancerIP }}
loadBalancerIP: { .Values.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
{{- end }}
ports:
{{- range .Values.service.ports }}
Expand Down

0 comments on commit ef9558f

Please sign in to comment.