a08e39f8ff
### Description of the change Added namespaces to all the template files to better support alternate templaters in gitops systems ### Benefits Gitops system that have different ways of handling helm templates can actually deploy this chart correct, especially through subcharts ### Possible drawbacks Potential regression when upgrading, though this should be unlikely per @jessesanford 's comments with it defaulting back to the existing behaviour ### Applicable issues - Addresses https://gitea.com/gitea/helm-chart/issues/630 - Addresses https://gitea.com/gitea/helm-chart/issues/557 - Addresses https://gitea.com/gitea/helm-chart/issues/623 ### Checklist - [X] Parameters are documented in the `values.yaml` and added to the `README.md` using [readme-generator-for-helm](https://github.com/bitnami-labs/readme-generator-for-helm) - [X] Breaking changes are documented in the `README.md` Co-authored-by: SorsOps <80043879+sorsOps@users.noreply.github.com> Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/713 Reviewed-by: pat-s <pat-s@noreply.gitea.com> Reviewed-by: justusbunsi <justusbunsi@noreply.gitea.com> Co-authored-by: SorsOps <sorsops@noreply.gitea.com> Co-committed-by: SorsOps <sorsops@noreply.gitea.com>
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "gitea.fullname" . }}-ssh
|
|
namespace: {{ .Values.namespace | default .Release.Namespace }}
|
|
labels:
|
|
{{- include "gitea.labels" . | nindent 4 }}
|
|
{{- if .Values.service.ssh.labels }}
|
|
{{- toYaml .Values.service.ssh.labels | nindent 4 }}
|
|
{{- end }}
|
|
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.loadBalancerClass }}
|
|
loadBalancerClass: {{ .Values.service.ssh.loadBalancerClass }}
|
|
{{- end }}
|
|
{{- 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 }}
|
|
{{- if .Values.gitea.config.server.SSH_LISTEN_PORT }}
|
|
targetPort: {{ .Values.gitea.config.server.SSH_LISTEN_PORT }}
|
|
{{- end }}
|
|
protocol: TCP
|
|
{{- if .Values.service.ssh.nodePort }}
|
|
nodePort: {{ .Values.service.ssh.nodePort }}
|
|
{{- end }}
|
|
selector:
|
|
{{- include "gitea.selectorLabels" . | nindent 4 }}
|