From 09fb5701421248e5c185848eeedd9b9a4df83583 Mon Sep 17 00:00:00 2001 From: Kai Ehrhardt <59036056+kaiehrhardt@users.noreply.github.com> Date: Thu, 24 Oct 2024 19:12:59 +0200 Subject: [PATCH] add kubeai metrics service endpoint (#284) --- charts/kubeai/Chart.yaml | 2 +- charts/kubeai/templates/service.yaml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/kubeai/Chart.yaml b/charts/kubeai/Chart.yaml index 26e0187a..64b1aa6b 100644 --- a/charts/kubeai/Chart.yaml +++ b/charts/kubeai/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.7.0 +version: 0.7.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/kubeai/templates/service.yaml b/charts/kubeai/templates/service.yaml index a1cec497..e4ad1737 100644 --- a/charts/kubeai/templates/service.yaml +++ b/charts/kubeai/templates/service.yaml @@ -11,5 +11,9 @@ spec: targetPort: http protocol: TCP name: http + - port: 8080 + targetPort: 8080 + protocol: TCP + name: http-metrics selector: {{- include "kubeai.selectorLabels" . | nindent 4 }}