diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2022-03-22 08:31:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-03-22 08:31:53 +0000 |
commit | cddf7e96beea28199b99d4fd5ecb60b4b201b6c0 (patch) | |
tree | a4f511a842e2064533a22c6547796c773ef34e80 /kubernetes/policy/components/policy-apex-pdp/values.yaml | |
parent | 5ac37891dd07fe5370cd4c4b462dbfbf7b4eac40 (diff) | |
parent | a8b09265770c1212cb4b0872adfbed2a4f7c1549 (diff) |
Merge "[POLICY] Enable prometheus integration for policy fwk"
Diffstat (limited to 'kubernetes/policy/components/policy-apex-pdp/values.yaml')
-rwxr-xr-x | kubernetes/policy/components/policy-apex-pdp/values.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/kubernetes/policy/components/policy-apex-pdp/values.yaml b/kubernetes/policy/components/policy-apex-pdp/values.yaml index 48e6802219..7bb430ad29 100755 --- a/kubernetes/policy/components/policy-apex-pdp/values.yaml +++ b/kubernetes/policy/components/policy-apex-pdp/values.yaml @@ -139,3 +139,27 @@ serviceAccount: nameOverride: policy-apex-pdp 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-apex-pdp + interval: 60s + isHttps: true + basicAuth: + enabled: true + externalSecretNameSuffix: policy-apex-pdp-restserver-creds + externalSecretUserKey: login + externalSecretPasswordKey: password + selector: + app: '{{ include "common.name" . }}' + chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' + release: '{{ include "common.release" . }}' + heritage: '{{ .Release.Service }}' |