add extraPorts support

This commit is contained in:
Marko Oldenburg 2024-10-12 09:02:35 +02:00
parent 9ac5be6ce1
commit a984c2763f
2 changed files with 13 additions and 3 deletions

View File

@ -44,6 +44,15 @@ spec:
- name: telnet
containerPort: {{ .Values.telnetport }}
protocol: TCP
{{- if .Values.service.extraPorts }}
{{- range $servicePort := .Values.service.extraPorts }}
- name: {{ $servicePort.name }}
containerPort: {{ $servicePort.targetPort }}
{{- if $servicePort.protocol }}
protocol: {{ $servicePort.protocol }}
{{- end }}
{{- end }}
livenessProbe:
httpGet:
path: /fhem

View File

@ -26,7 +26,8 @@ spec:
nodePort: {{ .Values.service.nodePorts.fhemweb }}
{{- end }}
{{- if .Values.service.extraPorts }}
{{- include "common.tplvalues.render" (dict "value" .Values.service.extraPorts "context" $) | nindent 4 }}
{{- toYaml .Values.service.extraPorts | nindent 2 }}
{{- end }}
selector:
{{- include "fhem.selectorLabels" . | nindent 4 }}