2020-08-23 12:56:55 -05:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: {{ include "gitea.fullname" . }}-http
|
|
|
|
labels:
|
|
|
|
{{- include "gitea.labels" . | nindent 4 }}
|
2020-11-20 02:08:26 -06:00
|
|
|
annotations:
|
|
|
|
{{- toYaml .Values.service.http.annotations | nindent 4 }}
|
2020-08-23 12:56:55 -05:00
|
|
|
spec:
|
|
|
|
type: {{ .Values.service.http.type }}
|
2020-10-21 07:38:01 -05:00
|
|
|
{{- if and .Values.service.http.loadBalancerIP (eq .Values.service.http.type "LoadBalancer") }}
|
|
|
|
loadBalancerIP: {{ .Values.service.http.loadBalancerIP }}
|
|
|
|
{{- end }}
|
2021-06-07 12:53:01 -05:00
|
|
|
{{- if .Values.service.http.loadBalancerSourceRanges }}
|
|
|
|
loadBalancerSourceRanges:
|
|
|
|
{{- range .Values.service.http.loadBalancerSourceRanges }}
|
|
|
|
- {{ . }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.service.http.externalIPs }}
|
|
|
|
externalIPs:
|
|
|
|
{{- toYaml .Values.service.http.externalIPs | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.service.http.externalTrafficPolicy }}
|
|
|
|
externalTrafficPolicy: {{ .Values.service.http.externalTrafficPolicy }}
|
|
|
|
{{- end }}
|
2020-12-16 06:37:47 -06:00
|
|
|
{{- if and .Values.service.http.clusterIP (eq .Values.service.http.type "ClusterIP") }}
|
|
|
|
clusterIP: {{ .Values.service.http.clusterIP }}
|
2020-10-21 07:38:01 -05:00
|
|
|
{{- end }}
|
2020-08-23 12:56:55 -05:00
|
|
|
ports:
|
|
|
|
- name: http
|
|
|
|
port: {{ .Values.service.http.port }}
|
|
|
|
{{- if .Values.service.http.nodePort }}
|
|
|
|
nodePort: {{ .Values.service.http.nodePort }}
|
|
|
|
{{- end }}
|
|
|
|
targetPort: {{ .Values.gitea.config.server.HTTP_PORT }}
|
|
|
|
selector:
|
|
|
|
{{- include "gitea.selectorLabels" . | nindent 4 }}
|