18 lines
562 B
YAML
18 lines
562 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: "{{ include "gateway.fullname" . }}-apimgr"
|
|
labels:
|
|
{{- include "gateway.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: apimgr
|
|
spec:
|
|
type: {{ .Values.apimgr.service.type }}
|
|
ports:
|
|
- port: {{ .Values.apimgr.service.ports.ui.port }}
|
|
targetPort: {{ .Values.apimgr.service.ports.ui.port }}
|
|
protocol: {{ .Values.apimgr.service.ports.ui.protocol }}
|
|
name: apimanagerui
|
|
selector:
|
|
{{- include "gateway.selectorLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: apimgr
|