
To enable access to e.g. the SSH port by IPv6, the selection of ipFamilyPolicy and ipFamilies service attributes is necessary. Enable the possibility to configure these by helm values. Co-authored-by: Sven Fischer <sven@leiderfischer.de> Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/313 Reviewed-by: justusbunsi <justusbunsi@noreply.gitea.io> Reviewed-by: luhahn <luhahn@noreply.gitea.io> Co-authored-by: svenihoney <svenihoney@noreply.gitea.io> Co-committed-by: svenihoney <svenihoney@noreply.gitea.io>
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "gitea.fullname" . }}-ssh
|
|
labels:
|
|
{{- include "gitea.labels" . | nindent 4 }}
|
|
annotations:
|
|
{{- toYaml .Values.service.ssh.annotations | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.ssh.type }}
|
|
{{- if eq .Values.service.ssh.type "LoadBalancer" }}
|
|
{{- if .Values.service.ssh.loadBalancerIP }}
|
|
loadBalancerIP: {{ .Values.service.ssh.loadBalancerIP }}
|
|
{{- end -}}
|
|
{{- if .Values.service.ssh.loadBalancerSourceRanges }}
|
|
loadBalancerSourceRanges:
|
|
{{- range .Values.service.ssh.loadBalancerSourceRanges }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if and .Values.service.ssh.clusterIP (eq .Values.service.ssh.type "ClusterIP") }}
|
|
clusterIP: {{ .Values.service.ssh.clusterIP }}
|
|
{{- end }}
|
|
{{- if .Values.service.ssh.externalIPs }}
|
|
externalIPs:
|
|
{{- toYaml .Values.service.ssh.externalIPs | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.service.ssh.ipFamilyPolicy }}
|
|
ipFamilyPolicy: {{ .Values.service.ssh.ipFamilyPolicy }}
|
|
{{- end }}
|
|
{{- with .Values.service.ssh.ipFamilies }}
|
|
ipFamilies:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end -}}
|
|
{{- if .Values.service.ssh.externalTrafficPolicy }}
|
|
externalTrafficPolicy: {{ .Values.service.ssh.externalTrafficPolicy }}
|
|
{{- end }}
|
|
ports:
|
|
- name: ssh
|
|
port: {{ .Values.service.ssh.port }}
|
|
targetPort: {{ .Values.gitea.config.server.SSH_LISTEN_PORT }}
|
|
protocol: TCP
|
|
{{- if .Values.service.ssh.nodePort }}
|
|
nodePort: {{ .Values.service.ssh.nodePort }}
|
|
{{- end }}
|
|
selector:
|
|
{{- include "gitea.selectorLabels" . | nindent 4 }}
|