Skip to content

Commit

Permalink
webui: fix service spec ( nodePort should be under ports, not selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
maany committed Apr 5, 2024
1 parent 1d8798b commit fa05fa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/rucio-webui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rucio-webui
version: 34.0.1
version: 34.0.2
apiVersion: v1
description: A Helm chart to deploy the new Rucio Webui
keywords:
Expand Down
6 changes: 3 additions & 3 deletions charts/rucio-webui/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ spec:
targetPort: {{ .Values.service.targetPort }}
protocol: {{ .Values.service.protocol }}
name: {{ .Values.service.name }}
{{- if .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
selector:
app: {{ template "rucio.name" . }}
release: {{ .Release.Name }}
{{- if .Values.service.nodePort }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
{{- if .Values.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
{{- end }}
Expand Down

0 comments on commit fa05fa7

Please sign in to comment.