diff options
author | Rashmi Pujar <rashmi.pujar1@bell.ca> | 2022-03-15 21:58:57 -0400 |
---|---|---|
committer | Rashmi Pujar <rashmi.pujar1@bell.ca> | 2022-03-21 01:29:40 +0000 |
commit | a8b09265770c1212cb4b0872adfbed2a4f7c1549 (patch) | |
tree | 822ce993ccb68e641f2e03594c8fcab40078a6fa /kubernetes/policy/components/policy-distribution/templates | |
parent | db93f8696ea251334f2b2a389843cec82a130e75 (diff) |
[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 <rashmi.pujar1@bell.ca>
Change-Id: I79441958698271d9118efb78cfd121433e201ebd
Diffstat (limited to 'kubernetes/policy/components/policy-distribution/templates')
-rw-r--r-- | kubernetes/policy/components/policy-distribution/templates/serviceMonitor.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/kubernetes/policy/components/policy-distribution/templates/serviceMonitor.yaml b/kubernetes/policy/components/policy-distribution/templates/serviceMonitor.yaml new file mode 100644 index 0000000000..dbf6a7cd6a --- /dev/null +++ b/kubernetes/policy/components/policy-distribution/templates/serviceMonitor.yaml @@ -0,0 +1,23 @@ +{{/* +# ============LICENSE_START======================================================= +# Copyright (c) 2022 Bell Canada +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= +*/}} + +{{- if .Values.prometheus.enabled }} +{{ include "common.serviceMonitor" . }} +{{- end }}
\ No newline at end of file |