From 7d6b5884dfadf7b30bae56750fe0275447d59784 Mon Sep 17 00:00:00 2001 From: Dmitri Fedotov Date: Thu, 23 Jan 2025 11:57:53 +0200 Subject: [PATCH] [argora-remote] add metrics-bind-address --- system/argora-remote/Chart.yaml | 2 +- system/argora-remote/templates/deployment-argora.yaml | 3 ++- system/argora-remote/values.yaml | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/system/argora-remote/Chart.yaml b/system/argora-remote/Chart.yaml index f71507070b..22fc48f90b 100644 --- a/system/argora-remote/Chart.yaml +++ b/system/argora-remote/Chart.yaml @@ -13,7 +13,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.0.4 +version: 0.0.5 # 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 # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/system/argora-remote/templates/deployment-argora.yaml b/system/argora-remote/templates/deployment-argora.yaml index 238accb39b..65ab8bc67c 100644 --- a/system/argora-remote/templates/deployment-argora.yaml +++ b/system/argora-remote/templates/deployment-argora.yaml @@ -21,7 +21,8 @@ spec: - name: argora image: {{ .Values.image.repository }}:{{ .Values.image.tag }} args: - - --controllers="ironCoreServerController" + - --controllers={{ .Values.controllers }} + - --metrics-bind-address={{ .Values.metrics.bindAddress }} envFrom: - secretRef: name: argora diff --git a/system/argora-remote/values.yaml b/system/argora-remote/values.yaml index 8ebb5ec9df..a135983f35 100644 --- a/system/argora-remote/values.yaml +++ b/system/argora-remote/values.yaml @@ -16,3 +16,8 @@ ironcore: env: kubernetesServiceHost: + +controllers: "ironCoreServerController" + +metrics: + bindAddress: ":30088"