From a8b09265770c1212cb4b0872adfbed2a4f7c1549 Mon Sep 17 00:00:00 2001 From: Rashmi Pujar Date: Tue, 15 Mar 2022 21:58:57 -0400 Subject: [POLICY] Enable prometheus integration for policy fwk 1. Define serviceMonitor for policy components 2. Changes to common serviceMonitor tpl file to include tls params in authentication config, and to provide ability to overrride labels. Issue-ID: POLICY-3779 Signed-off-by: Rashmi Pujar Change-Id: I79441958698271d9118efb78cfd121433e201ebd --- .../components/policy-distribution/values.yaml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'kubernetes/policy/components/policy-distribution/values.yaml') diff --git a/kubernetes/policy/components/policy-distribution/values.yaml b/kubernetes/policy/components/policy-distribution/values.yaml index 42caed4163..e8f8ad6099 100755 --- a/kubernetes/policy/components/policy-distribution/values.yaml +++ b/kubernetes/policy/components/policy-distribution/values.yaml @@ -161,3 +161,27 @@ serviceAccount: nameOverride: policy-distribution roles: - read + +prometheus: + enabled: true + +metrics: + serviceMonitor: + # Override the labels based on the Prometheus config parameter: serviceMonitorSelector. + # The default operator for prometheus enforces the below label. + labels: + release: prometheus + enabled: true + port: policy-distribution + interval: 60s + isHttps: true + basicAuth: + enabled: true + externalSecretNameSuffix: policy-distribution-restserver-creds + externalSecretUserKey: login + externalSecretPasswordKey: password + selector: + app: '{{ include "common.name" . }}' + chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' + release: '{{ include "common.release" . }}' + heritage: '{{ .Release.Service }}' -- cgit 1.2.3-korg