You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
743 B
25 lines
743 B
{{- if and .Values.ingressController.enabled (semverCompare ">= 2.0.0" (include "kong.effectiveVersion" .Values.ingressController.image)) }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "kong.fullname" . }}-metrics
|
|
namespace: {{ template "kong.namespace" . }}
|
|
labels:
|
|
{{- include "kong.metaLabels" . | nindent 4 }}
|
|
{{- if .Values.ingressController.labels }}
|
|
{{- toYaml .Values.ingressController.labels | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
ports:
|
|
- name: cmetrics
|
|
port: 10255
|
|
protocol: TCP
|
|
targetPort: cmetrics
|
|
- name: status
|
|
port: 10254
|
|
protocol: TCP
|
|
targetPort: cstatus
|
|
selector:
|
|
{{- include "kong.metaLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: app
|
|
{{- end }}
|
|
|