blob: 72434ef02d2c83127ec4413a72adddfc2c1db50b [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 Scandolod28ec7b2018-08-21 12:58:04 -070017apiVersion: v1
18kind: Service
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:
24 type: NodePort
25 ports:
26 - port: 8080
27 targetPort: 8080
Ganesh Bhure8c7221b2019-08-13 15:59:34 +053028 nodePort: {{ .Values.kpi_exporter.nem_kpi_exporter_nodePort }}
Matteo Scandolod28ec7b2018-08-21 12:58:04 -070029 protocol: TCP
30 selector:
Matteo Scandolo374d3092018-10-09 19:56:16 -070031 app: "kpi-exporter"
Hyunsun Moon3ca7ed32019-11-30 18:35:26 -080032{{- end }}