Skip to content

Commit

Permalink
fix: typos in service template
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 committed Mar 5, 2024
1 parent af63d80 commit b679b29
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 b679b29

Please sign in to comment.