From 5e23c598a8c079408087bb4b5f6f6ac1cd5791d8 Mon Sep 17 00:00:00 2001 From: Bassem Dghaidi <568794+Link-@users.noreply.github.com> Date: Tue, 29 Aug 2023 03:58:08 -0400 Subject: [PATCH] Move top level metrics property up (#2841) --- .../values.yaml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/charts/gha-runner-scale-set-controller/values.yaml b/charts/gha-runner-scale-set-controller/values.yaml index c5a59c74..c6a10455 100644 --- a/charts/gha-runner-scale-set-controller/values.yaml +++ b/charts/gha-runner-scale-set-controller/values.yaml @@ -75,6 +75,17 @@ affinity: {} # PriorityClass: system-cluster-critical priorityClassName: "" +## If `metrics:` object is not provided, or commented out, the following flags +## will be applied the controller-manager and listener pods with empty values: +## `--metrics-addr`, `--listener-metrics-addr`, `--listener-metrics-endpoint`. +## This will disable metrics. +## +## To enable metrics, uncomment the following lines. +# metrics: +# controllerManagerAddr: ":8080" +# listenerAddr: ":8080" +# listenerEndpoint: "/metrics" + flags: ## Log level can be set here with one of the following values: "debug", "info", "warn", "error". ## Defaults to "debug". @@ -102,14 +113,3 @@ flags: ## This can lead to a longer time to apply the change but it will ensure ## that you don't have any overprovisioning of runners. updateStrategy: "immediate" - -## If `metrics:` object is not provided, or commented out, the following flags -## will be applied the controller-manager and listener pods with empty values: -## `--metrics-addr`, `--listener-metrics-addr`, `--listener-metrics-endpoint`. -## This will disable metrics. -## -## To enable metrics, uncomment the following lines. -# metrics: -# controllerManagerAddr: ":8080" -# listenerAddr: ":8080" -# listenerEndpoint: "/metrics"