X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=helm%2Finfrastructure%2Fsubcharts%2Fkong%2Ftemplates%2Fservice-kong-portal.yaml;h=0be4b09b8e9a62f5a0adcfcd38258d7edd7730c0;hb=refs%2Fchanges%2F69%2F12969%2F1;hp=1e336daffb39b85cc67fad17202693a624eee859;hpb=38dc857062b14145f5b9db89d10eba0ae5b90d11;p=ric-plt%2Fric-dep.git diff --git a/helm/infrastructure/subcharts/kong/templates/service-kong-portal.yaml b/helm/infrastructure/subcharts/kong/templates/service-kong-portal.yaml old mode 100755 new mode 100644 index 1e336da..0be4b09 --- a/helm/infrastructure/subcharts/kong/templates/service-kong-portal.yaml +++ b/helm/infrastructure/subcharts/kong/templates/service-kong-portal.yaml @@ -1,57 +1,19 @@ +{{- if .Values.deployment.kong.enabled }} {{- if .Values.enterprise.enabled }} -apiVersion: v1 -kind: Service -metadata: - name: {{ template "kong.fullname" . }}-portal - annotations: - {{- range $key, $value := .Values.portal.annotations }} - {{ $key }}: {{ $value | quote }} - {{- end }} - labels: - app: {{ template "kong.name" . }} - chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - release: "{{ .Release.Name }}" - heritage: "{{ .Release.Service }}" -spec: - type: {{ .Values.portal.type }} - {{- if eq .Values.portal.type "LoadBalancer" }} - {{- if .Values.portal.loadBalancerIP }} - loadBalancerIP: {{ .Values.portal.loadBalancerIP }} - {{- end }} - {{- if .Values.portal.loadBalancerSourceRanges }} - loadBalancerSourceRanges: - {{- range $cidr := .Values.portal.loadBalancerSourceRanges }} - - {{ $cidr }} - {{- end }} - {{- end }} - {{- end }} - externalIPs: - {{- range $ip := .Values.portal.externalIPs }} - - {{ $ip }} - {{- end }} - ports: - {{- if .Values.portal.http.enabled }} - - name: kong-portal - port: {{ .Values.portal.http.servicePort }} - targetPort: {{ .Values.portal.http.containerPort }} - {{- if (and (eq .Values.portal.type "NodePort") (not (empty .Values.portal.http.nodePort))) }} - nodePort: {{ .Values.portal.http.nodePort }} - {{- end }} - protocol: TCP - {{- end }} - {{- if or .Values.portal.tls.enabled }} - - name: kong-portal-tls - port: {{ .Values.portal.tls.servicePort }} - targetPort: {{ .Values.portal.tls.containerPort }} - {{- if (and (eq .Values.portal.type "NodePort") (not (empty .Values.portal.tls.nodePort))) }} - nodePort: {{ .Values.portal.tls.nodePort }} - {{- end }} - protocol: TCP - {{- end }} - - - selector: - app: {{ template "kong.name" . }} - release: {{ .Release.Name }} - component: app +{{- if and .Values.portal.enabled (or .Values.portal.http.enabled .Values.portal.tls.enabled) -}} +{{- $serviceConfig := dict -}} +{{- $serviceConfig := merge $serviceConfig .Values.portal -}} +{{- $_ := set $serviceConfig "ingressVersion" (include "kong.ingressVersion" .) -}} +{{- $_ := set $serviceConfig "fullName" (include "kong.fullname" .) -}} +{{- $_ := set $serviceConfig "namespace" (include "kong.namespace" .) -}} +{{- $_ := set $serviceConfig "metaLabels" (include "kong.metaLabels" .) -}} +{{- $_ := set $serviceConfig "selectorLabels" (include "kong.selectorLabels" .) -}} +{{- $_ := set $serviceConfig "serviceName" "portal" -}} +{{- include "kong.service" $serviceConfig }} +{{ if .Values.portal.ingress.enabled }} +--- +{{ include "kong.ingress" $serviceConfig }} +{{- end -}} +{{- end -}} +{{- end -}} {{- end -}}