| Joey Armstrong | 084e447 | 2024-02-10 18:03:13 -0500 | [diff] [blame] | 1 | # Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors |
| Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [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 | |
| 15 | apiVersion: v1 |
| 16 | kind: Service |
| 17 | metadata: |
| Abhay Kumar | 733f4fa | 2025-12-09 12:19:11 +0000 | [diff] [blame] | 18 | annotations: |
| 19 | meta.helm.sh/release-name: "{{ .Values.fullNameOverride }}-{{ .Chart.Name }}" |
| 20 | meta.helm.sh/release-namespace: "{{ .Release.Namespace }}" |
| 21 | labels: |
| 22 | app.kubernetes.io/managed-by: {{ quote .Release.Service }} |
| 23 | app.kubernetes.io/name: "{{ .Chart.Name }}" |
| 24 | app.kubernetes.io/part-of: "voltha" |
| 25 | app.kubernetes.io/stack: "{{ .Values.global.stack_name }}" |
| 26 | app: "{{ .Chart.Name }}" |
| 27 | release: "{{ .Release.Name }}" |
| abhayk | fee1b0d | 2025-01-13 19:57:04 +0530 | [diff] [blame] | 28 | name: "{{ tpl .Values.voltha_go_controller.endpoints.address . }}" |
| 29 | namespace: {{ .Release.Namespace }} |
| Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [diff] [blame] | 30 | spec: |
| 31 | ports: |
| 32 | - name: of |
| 33 | port: {{ .Values.voltha_go_controller.ofPort }} |
| Abhay Kumar | 733f4fa | 2025-12-09 12:19:11 +0000 | [diff] [blame] | 34 | protocol: TCP |
| Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [diff] [blame] | 35 | targetPort: {{ .Values.voltha_go_controller.ofPort }} |
| 36 | - name: ui |
| 37 | port: {{ .Values.voltha_go_controller.uiPort }} |
| Abhay Kumar | 733f4fa | 2025-12-09 12:19:11 +0000 | [diff] [blame] | 38 | protocol: TCP |
| Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [diff] [blame] | 39 | targetPort: {{ .Values.voltha_go_controller.uiPort }} |
| Abhay Kumar | 733f4fa | 2025-12-09 12:19:11 +0000 | [diff] [blame] | 40 | - name: promserver |
| 41 | port: 8081 |
| 42 | protocol: TCP |
| 43 | targetPort: 8081 |
| Tinoj Joseph | dd1fd9d | 2022-08-01 23:59:26 +0530 | [diff] [blame] | 44 | selector: |
| 45 | app: "{{ .Chart.Name }}" |