blob: 1237811c1673b56bdfc69db523f4c9e512978d81 [file] [log] [blame]
Scott Baker2b7dbcc2019-07-03 12:22:12 -07001{{/* vim: set filetype=mustache: */}}
2{{/*
3Copyright 2018-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16*/}}
17
18{{- define "exporter.config" -}}
19---
20broker:
21 name: broker-name
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053022 host: {{ .Values.kpi_exporter.kpi_broker }}
Scott Baker2b7dbcc2019-07-03 12:22:12 -070023 description: The kafka broker
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053024 topics: {{ range .Values.kpi_exporter.topics }}
25 - {{ . }} {{ end }}
Scott Baker2b7dbcc2019-07-03 12:22:12 -070026logger:
27 loglevel: info
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053028 host: {{ .Values.kpi_exporter.kpi_broker }}
Scott Baker2b7dbcc2019-07-03 12:22:12 -070029target:
30 type: prometheus-target
31 name: http-server
32 port: 8080
33 description: http target for prometheus
34{{- end -}}
Hyunsun Moon3ca7ed32019-11-30 18:35:26 -080035
36{{/*
37Create a default fully qualified kpi-exporter name.
38We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
39*/}}
40{{- define "kpi-exporter.fullname" -}}
41{{- if .Values.kpi_exporter.fullnameOverride -}}
42{{- .Values.kpi_exporter.fullnameOverride | trunc 63 | trimSuffix "-" -}}
43{{- else -}}
44{{- $name := default "nem-kpi-exporter" .Values.kpi_exporter.nameOverride -}}
45{{- if contains $name .Release.Name -}}
46{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
47{{- else -}}
48{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
49{{- end -}}
50{{- end -}}
51{{- end -}}