Skip to content

Commit

Permalink
chore(chart): release 7.10.2 (#9903)
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks authored Jan 30, 2025
1 parent c882253 commit 7417670
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/kubernetes-dashboard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

apiVersion: v2
name: kubernetes-dashboard
version: 7.10.1
version: 7.10.2
description: General-purpose web UI for Kubernetes clusters
keywords:
- kubernetes
Expand Down
6 changes: 5 additions & 1 deletion charts/kubernetes-dashboard/templates/services/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@ metadata:
name: {{ template "kubernetes-dashboard.fullname" . }}-{{ .Values.api.role }}
spec:
ports:
- name: {{ .Values.api.role }}
{{- with (index .Values.api.containers.ports 0) }}
- name: {{ .name }}
port: {{ .containerPort }}
{{ if .protocol }}protocol: {{ .protocol }}{{- end }}
{{ if .appProtocol }}appProtocol: {{ .appProtocol }}{{- end }}
{{ if .nodePort }}nodePort: {{ .nodePort }}{{- end }}
{{ if .targetPort }}targetPort: {{ .targetPort }}{{- end }}
{{- end }}
selector:
{{- include "kubernetes-dashboard.matchLabels" . | nindent 4 }}
Expand Down
6 changes: 5 additions & 1 deletion charts/kubernetes-dashboard/templates/services/auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ metadata:
name: {{ template "kubernetes-dashboard.fullname" . }}-{{ .Values.auth.role }}
spec:
ports:
- name: {{ .Values.auth.role }}
{{- with (index .Values.auth.containers.ports 0) }}
- name: {{ .name }}
port: {{ .containerPort }}
{{ if .protocol }}protocol: {{ .protocol }}{{- end }}
{{ if .appProtocol }}appProtocol: {{ .appProtocol }}{{- end }}
{{ if .nodePort }}nodePort: {{ .nodePort }}{{- end }}
{{ if .targetPort }}targetPort: {{ .targetPort }}{{- end }}
{{- end }}
selector:
{{- include "kubernetes-dashboard.matchLabels" . | nindent 4 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ metadata:
spec:
ports:
{{- with (index .Values.metricsScraper.containers.ports 0) }}
# Name is intentionally not used here as it breaks the connection between API <-> Scraper
# Named ports have an issue when trying to connect through in-cluster service proxy.
- port: {{ .containerPort }}
{{ if .protocol }}protocol: {{ .protocol }}{{- end }}
{{ if .appProtocol }}appProtocol: {{ .appProtocol }}{{- end }}
{{ if .nodePort }}nodePort: {{ .nodePort }}{{- end }}
{{ if .targetPort }}targetPort: {{ .targetPort }}{{- end }}
{{- end }}
selector:
{{- include "kubernetes-dashboard.matchLabels" . | nindent 4 }}
Expand Down
6 changes: 5 additions & 1 deletion charts/kubernetes-dashboard/templates/services/web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ metadata:
name: {{ template "kubernetes-dashboard.fullname" . }}-{{ .Values.web.role }}
spec:
ports:
- name: {{ .Values.web.role }}
{{- with (index .Values.web.containers.ports 0) }}
- name: {{ .name }}
port: {{ .containerPort }}
{{ if .protocol }}protocol: {{ .protocol }}{{- end }}
{{ if .appProtocol }}appProtocol: {{ .appProtocol }}{{- end }}
{{ if .nodePort }}nodePort: {{ .nodePort }}{{- end }}
{{ if .targetPort }}targetPort: {{ .targetPort }}{{- end }}
{{- end }}
selector:
{{- include "kubernetes-dashboard.matchLabels" . | nindent 4 }}
Expand Down

0 comments on commit 7417670

Please sign in to comment.