54 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
{{- /*
 | 
						|
Copyright Broadcom, Inc. All Rights Reserved.
 | 
						|
SPDX-License-Identifier: APACHE-2.0
 | 
						|
*/}}
 | 
						|
 | 
						|
apiVersion: v1
 | 
						|
kind: Service
 | 
						|
metadata:
 | 
						|
  name: {{ template "common.names.fullname" . }}
 | 
						|
  namespace: {{ include "common.names.namespace" . | quote }}
 | 
						|
  labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
 | 
						|
  {{- if or .Values.commonAnnotations .Values.service.annotations }}
 | 
						|
  {{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.service.annotations .Values.commonAnnotations ) "context" . ) }}
 | 
						|
  annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
 | 
						|
  {{- end }}
 | 
						|
spec:
 | 
						|
  type: {{ .Values.service.type }}
 | 
						|
  {{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP)) }}
 | 
						|
  loadBalancerIP: {{ .Values.service.loadBalancerIP }}
 | 
						|
  {{- end }}
 | 
						|
  {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
 | 
						|
  externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
 | 
						|
  {{- end }}
 | 
						|
  {{- if and .Values.service.clusterIP (eq .Values.service.type "ClusterIP") }}
 | 
						|
  clusterIP: {{ .Values.service.clusterIP }}
 | 
						|
  {{- end }}
 | 
						|
  {{- if and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerSourceRanges)) }}
 | 
						|
  loadBalancerSourceRanges: {{ .Values.service.loadBalancerSourceRanges }}
 | 
						|
  {{- end }}
 | 
						|
  {{- if .Values.service.sessionAffinity }}
 | 
						|
  sessionAffinity: {{ .Values.service.sessionAffinity }}
 | 
						|
  {{- end }}
 | 
						|
  {{- if .Values.service.sessionAffinityConfig }}
 | 
						|
  sessionAffinityConfig: {{- include "common.tplvalues.render" (dict "value" .Values.service.sessionAffinityConfig "context" $) | nindent 4 }}
 | 
						|
  {{- end }}
 | 
						|
  ports:
 | 
						|
    - name: http
 | 
						|
      port: {{ .Values.service.ports.http }}
 | 
						|
      targetPort: http
 | 
						|
      {{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePorts.http))) }}
 | 
						|
      nodePort: {{ .Values.service.nodePorts.http }}
 | 
						|
      {{- end }}
 | 
						|
    - name: https
 | 
						|
      port: {{ .Values.service.ports.https }}
 | 
						|
      targetPort: https
 | 
						|
      {{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePorts.https))) }}
 | 
						|
      nodePort: {{ .Values.service.nodePorts.https }}
 | 
						|
      {{- end }}
 | 
						|
    {{- if .Values.service.extraPorts }}
 | 
						|
    {{- include "common.tplvalues.render" (dict "value" .Values.service.extraPorts "context" $) | nindent 4 }}
 | 
						|
    {{- end }}
 | 
						|
  {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
 | 
						|
  selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
 |