blob: cd301565c7a3c07872f52beac1743da8b5acf91a [file] [log] [blame]
Matteo Scandolod28ec7b2018-08-21 12:58:04 -07001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Hyunsun Moon3ca7ed32019-11-30 18:35:26 -080016{{- if .Values.kpi_exporter.enabled }}
Matteo Scandolo5628d4b2021-01-11 11:46:12 -080017apiVersion: apps/v1
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070018kind: Deployment
19metadata:
Hyunsun Moon3ca7ed32019-11-30 18:35:26 -080020 name: {{ template "kpi-exporter.fullname" . }}
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070021 labels:
22 release: {{ .Release.Name }}
23spec:
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053024 replicas: {{ .Values.kpi_exporter.nem_kpi_exporter_replicas }}
Matteo Scandolo5628d4b2021-01-11 11:46:12 -080025 selector:
26 matchLabels:
27 name: sadis-server
28 release: {{ .Release.Name }}
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070029 template:
30 metadata:
31 labels:
Matteo Scandolo374d3092018-10-09 19:56:16 -070032 app: kpi-exporter
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070033 release: {{ .Release.Name }}
34 spec:
35 containers:
Matteo Scandolo374d3092018-10-09 19:56:16 -070036 - name: kpi-exporter
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053037 image: "{{ .Values.global.registry }}{{ .Values.images.kpi_exporter.repository }}:{{ tpl .Values.images.kpi_exporter.tag . }}"
38 imagePullPolicy: "{{ .Values.images.kpi_exporter.pullPolicy }}"
39 args: ["-broker={{ .Values.kpi_exporter.kpi_broker }}"]
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070040 ports:
41 - containerPort: 8080
42 port: 8080
43 protocol: TCP
Ganesh Bhure8cc0f352019-07-01 18:12:41 +053044 volumeMounts:
45 - name: exporter-config
46 mountPath: /etc/config/conf.yaml
47 subPath: conf.yaml
48 volumes:
49 - name: exporter-config
50 configMap:
Hyunsun Moon3ca7ed32019-11-30 18:35:26 -080051 name: {{ template "kpi-exporter.fullname" . }}
52{{- end }}