blob: 25673d65bdcd57095afa9e0cecc1afe11ec0fb6f [file] [log] [blame]
PUSHP RAJ7c521fa2021-12-06 14:19:03 +00001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
PUSHP RAJ7c521fa2021-12-06 14:19:03 +00004apiVersion: v1
5kind: Service
6metadata:
7 name: {{ template "chronos-exporter.fullname" . }}
8 labels:
9 app: {{ template "chronos-exporter.fullname" . }}
10 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
11 release: "{{ .Release.Name }}"
12 heritage: "{{ .Release.Service }}"
13 {{- include "chronos-exporter.labels" . | nindent 4 }}
14spec:
15 type: {{ .Values.service.type }}
16 selector:
17 name: {{ template "chronos-exporter.fullname" . }}
18 ports:
19 - name: metrics
20 port: 2112
21 - name: exporterui
22 port: 8081