blob: f04e9fb5faec082553a45c48f37262fca422cec5 [file] [log] [blame]
David Bainbridge8595b3b2020-06-05 12:23:05 -07001# 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_olt.log_level . | upper }}
16---
17apiVersion: v1
18kind: Service
19metadata:
20 name: adapter-open-olt-profiler
21 namespace: {{ .Release.Namespace }}
22spec:
23 clusterIP: None
24 ports:
25 - name: profiler
26 port: 6060
27 targetPort: 6060
28 selector:
29 app: adapter-open-olt
30 release: {{ .Release.Name }}
31{{- end }}