blob: 1237811c1673b56bdfc69db523f4c9e512978d81 [file] [log] [blame]
Scott Baker3c9ef642020-07-09 13:49:58 -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
22 host: {{ .Values.kpi_exporter.kpi_broker }}
23 description: The kafka broker
24 topics: {{ range .Values.kpi_exporter.topics }}
25 - {{ . }} {{ end }}
26logger:
27 loglevel: info
28 host: {{ .Values.kpi_exporter.kpi_broker }}
29target:
30 type: prometheus-target
31 name: http-server
32 port: 8080
33 description: http target for prometheus
34{{- end -}}
35
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 -}}