charts/apisix/templates/service-control.yaml (43 lines of code) (raw):

# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. {{ if (and .Values.apisix.enabled .Values.control.enabled) }} apiVersion: v1 kind: Service metadata: name: {{ include "apisix.fullname" . }}-control namespace: {{ .Release.Namespace }} annotations: {{- range $key, $value := .Values.control.service.annotations }} {{ $key }}: {{ $value | quote }} {{- end }} labels: {{- include "apisix.labels" . | nindent 4 }} app.kubernetes.io/service: apisix-control spec: type: {{ .Values.control.service.type }} {{- if eq .Values.control.service.type "LoadBalancer" }} {{- if .Values.control.service.loadBalancerIP }} loadBalancerIP: {{ .Values.control.service.loadBalancerIP }} {{- end }} {{- if .Values.control.service.loadBalancerSourceRanges }} loadBalancerSourceRanges: {{- range $cidr := .Values.control.service.loadBalancerSourceRanges }} - {{ $cidr }} {{- end }} {{- end }} {{- end }} {{- if gt (len .Values.control.service.externalIPs) 0 }} externalIPs: {{- range $ip := .Values.control.service.externalIPs }} - {{ $ip }} {{- end }} {{- end }} ports: - name: apisix-control port: {{ .Values.control.service.servicePort }} targetPort: {{ .Values.control.service.port }} {{- if (and (eq .Values.control.service.type "NodePort") (not (empty .Values.control.service.nodePort))) }} nodePort: {{ .Values.control.service.nodePort }} {{- end }} protocol: TCP selector: {{- include "apisix.selectorLabels" . | nindent 4 }} {{ end }}