Add kong chart 2.46.0

This commit is contained in:
wbsong111
2025-02-04 15:59:46 +09:00
parent 867f3e0984
commit f51fa24bb3
96 changed files with 18682 additions and 0 deletions
@@ -0,0 +1,25 @@
{{- 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 }}