blob: ae8479f7fbc3ecd6587e58db8ad6411fa01ae18e [file] [log] [blame]
Andrea Campanella7739aae2021-02-11 11:00:03 +01001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14{{- if .Values.profiler.enabled }}
15{{- $log_level := tpl .Values.adapter_open_onu.log_level . | upper }}
16---
17apiVersion: v1
18kind: Service
19metadata:
20 name: "{{ template "fullname" . }}-profiler"
21 namespace: {{ .Release.Namespace }}
22spec:
23 clusterIP: None
24 ports:
25 - name: openonu-profiler
26 port: 6060
27 targetPort: 6060
28 selector:
29 app: adapter-open-onu
30 release: {{ .Release.Name }}
31{{- end }}