Joey Armstrong | 0747509 | 2023-01-26 10:56:13 -0500 | [diff] [blame] | 1 | # Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 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 | --- |
| 17 | apiVersion: v1 |
| 18 | kind: Service |
| 19 | metadata: |
Andrea Campanella | 7739aae | 2021-02-11 11:00:03 +0100 | [diff] [blame] | 20 | name: "{{ template "fullname" . }}-profiler" |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 21 | namespace: {{ .Release.Namespace }} |
| 22 | spec: |
| 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 }} |