Files
devops-infra-helm-charts-gcp/helm-templates/contour-v1.33.3-v2/templates/contour/service-loadbalancer.yaml
T
2026-08-26 03:39:42 +05:30

30 lines
1.3 KiB
YAML

{{- /*
Meesho Custom: GCP Internal Load Balancer for Contour xDS service
*/}}
{{- if .Values.contour.enabled }}
{{- if .Values.contour.service.tcpLB }}
apiVersion: v1
kind: Service
metadata:
name: {{ printf "%s-contour" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}-tcp-lb
namespace: {{ include "common.names.namespace" . | quote }}
annotations:
cloud.google.com/load-balancer-type: "Internal"
{{- $versionLabel := dict "app.kubernetes.io/version" ( include "common.images.version" ( dict "imageRoot" .Values.contour.image "chart" .Chart ) ) }}
{{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.commonLabels $versionLabel ) "context" . ) }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: contour
spec:
type: LoadBalancer
ports:
- port: {{ .Values.contour.service.ports.xds }}
name: tcp-xds
protocol: TCP
targetPort: xds
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.contour.podLabels .Values.commonLabels ) "context" . ) }}
selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: contour
{{- end }}
{{- end }}