From dac76b9713917f96bad6b7ed6ca263b80ac13d2a Mon Sep 17 00:00:00 2001 From: duynguyen Date: Sun, 3 May 2026 14:03:16 +0700 Subject: [PATCH] feat: enable metrics service for ArgoCD components Updated values.yaml to enable metrics service for the controller, server, repoServer, and applicationSet components, allowing for improved monitoring and observability through Prometheus ServiceMonitor. --- manifest/argocd-9.1.0/values.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/manifest/argocd-9.1.0/values.yaml b/manifest/argocd-9.1.0/values.yaml index 937ecd9..cd36e1b 100644 --- a/manifest/argocd-9.1.0/values.yaml +++ b/manifest/argocd-9.1.0/values.yaml @@ -1012,7 +1012,7 @@ controller: ## Application controller metrics configuration metrics: # -- Deploy metrics service - enabled: false + enabled: true # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. scrapeTimeout: "" applicationLabels: @@ -1035,7 +1035,7 @@ controller: portName: http-metrics serviceMonitor: # -- Enable a prometheus ServiceMonitor - enabled: false + enabled: true # -- Prometheus ServiceMonitor interval interval: 30s # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. @@ -2366,7 +2366,7 @@ server: ## Server metrics service configuration metrics: # -- Deploy metrics service - enabled: false + enabled: true service: # -- Metrics service type type: ClusterIP @@ -2382,7 +2382,7 @@ server: portName: http-metrics serviceMonitor: # -- Enable a prometheus ServiceMonitor - enabled: false + enabled: true # -- Prometheus ServiceMonitor interval interval: 30s # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. @@ -3079,7 +3079,7 @@ repoServer: ## Repo server metrics service configuration metrics: # -- Deploy metrics service - enabled: false + enabled: true service: # -- Metrics service type type: ClusterIP @@ -3095,7 +3095,7 @@ repoServer: portName: http-metrics serviceMonitor: # -- Enable a prometheus ServiceMonitor - enabled: false + enabled: true # -- Prometheus ServiceMonitor interval interval: 30s # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. @@ -3248,7 +3248,7 @@ applicationSet: ## Metrics service configuration metrics: # -- Deploy metrics service - enabled: false + enabled: true service: # -- Metrics service type type: ClusterIP @@ -3264,7 +3264,7 @@ applicationSet: portName: http-metrics serviceMonitor: # -- Enable a prometheus ServiceMonitor - enabled: false + enabled: true # -- Prometheus ServiceMonitor interval interval: 30s # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used.