blob: 612537ade0b082430cd7570e1fbea85982920dea [file] [log] [blame]
Joey Armstrong084e4472024-02-10 18:03:13 -05001# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +05302#
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
15apiVersion: v1
16kind: Service
17metadata:
Abhay Kumar733f4fa2025-12-09 12:19:11 +000018 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 }}"
abhaykfee1b0d2025-01-13 19:57:04 +053028 name: "{{ tpl .Values.voltha_go_controller.endpoints.address . }}"
29 namespace: {{ .Release.Namespace }}
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053030spec:
31 ports:
32 - name: of
33 port: {{ .Values.voltha_go_controller.ofPort }}
Abhay Kumar733f4fa2025-12-09 12:19:11 +000034 protocol: TCP
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053035 targetPort: {{ .Values.voltha_go_controller.ofPort }}
36 - name: ui
37 port: {{ .Values.voltha_go_controller.uiPort }}
Abhay Kumar733f4fa2025-12-09 12:19:11 +000038 protocol: TCP
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053039 targetPort: {{ .Values.voltha_go_controller.uiPort }}
Abhay Kumar733f4fa2025-12-09 12:19:11 +000040 - name: promserver
41 port: 8081
42 protocol: TCP
43 targetPort: 8081
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053044 selector:
45 app: "{{ .Chart.Name }}"