Scott Baker | e3090f0 | 2022-05-31 15:51:41 -0700 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2022-present Intel Corporation |
| 2 | # SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> |
| 3 | # |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | {{- if eq .Values.prometheusEnabled true }} |
| 7 | |
| 8 | apiVersion: monitoring.coreos.com/v1 |
| 9 | kind: ServiceMonitor |
| 10 | metadata: |
| 11 | name: fabric-adapter |
| 12 | labels: |
| 13 | {{- include "fabric-adapter.labels" . | nindent 4 }} |
| 14 | spec: |
| 15 | selector: |
| 16 | matchLabels: |
| 17 | {{- include "fabric-adapter.selectorLabels" . | nindent 6 }} |
| 18 | endpoints: |
| 19 | - port: prometheus |
| 20 | path: /metrics |
| 21 | scheme: HTTP |
| 22 | {{ end }} |