blob: 7c2adb3c704e2de7c5abd961c1e5c49171280cf8 [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:
abhaykfee1b0d2025-01-13 19:57:04 +053018 name: "{{ tpl .Values.voltha_go_controller.endpoints.address . }}"
19 namespace: {{ .Release.Namespace }}
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053020spec:
21 ports:
22 - name: of
23 port: {{ .Values.voltha_go_controller.ofPort }}
24 targetPort: {{ .Values.voltha_go_controller.ofPort }}
25 - name: ui
26 port: {{ .Values.voltha_go_controller.uiPort }}
27 targetPort: {{ .Values.voltha_go_controller.uiPort }}
28 selector:
29 app: "{{ .Chart.Name }}"