142 lines
4.1 KiB
YAML
142 lines
4.1 KiB
YAML
{{/*
|
|
Generate Services for each enabled service.
|
|
*/}}
|
|
|
|
{{- if .Values.gitdata.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "gitdata") }}
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "gitdata") | nindent 4 }}
|
|
{{- with .Values.gitdata.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.gitdata.service.type }}
|
|
ports:
|
|
- port: {{ .Values.gitdata.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "gitdata") | nindent 4 }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.gitpod.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "gitpod") }}-http
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
{{- with .Values.gitpod.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.gitpod.service.type }}
|
|
ports:
|
|
- port: {{ .Values.gitpod.service.port | default 8080 }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "gitpod") }}-ssh
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
{{- with .Values.gitpod.sshService.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.gitpod.sshService.type }}
|
|
ports:
|
|
- port: {{ .Values.gitpod.sshService.port | default 2222 }}
|
|
targetPort: ssh
|
|
protocol: TCP
|
|
name: ssh
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "gitpod") }}-rpc
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
{{- with .Values.gitpod.rpcService.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.gitpod.rpcService.type }}
|
|
ports:
|
|
- port: {{ .Values.gitpod.rpcService.port | default 50051 }}
|
|
targetPort: grpc
|
|
protocol: TCP
|
|
name: grpc
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "gitpod") | nindent 4 }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.gitsync.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "gitsync") }}
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "gitsync") | nindent 4 }}
|
|
{{- with .Values.gitsync.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.gitsync.service.type }}
|
|
ports:
|
|
- port: {{ .Values.gitsync.service.port | default 8081 }}
|
|
targetPort: health
|
|
protocol: TCP
|
|
name: health
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "gitsync") | nindent 4 }}
|
|
{{- end }}
|
|
|
|
{{- if and .Values.email.enabled .Values.email.service.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" . "name" "email") }}
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" . "name" "email") | nindent 4 }}
|
|
{{- with .Values.email.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.email.service.type }}
|
|
ports:
|
|
- port: {{ .Values.email.service.port | default 8083 }}
|
|
targetPort: health
|
|
protocol: TCP
|
|
name: health
|
|
selector:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" . "name" "email") | nindent 4 }}
|
|
{{- end }}
|