blob: 97a1172e2bf5d753a4c01327a260d4f271824ab5 [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:
18 labels:
19 name: "{{ .Chart.Name }}"
20 release: {{ .Release.Name }}
21 name: "{{ .Chart.Name }}"
22spec:
23 ports:
24 - name: of
25 port: {{ .Values.voltha_go_controller.ofPort }}
26 targetPort: {{ .Values.voltha_go_controller.ofPort }}
27 - name: ui
28 port: {{ .Values.voltha_go_controller.uiPort }}
29 targetPort: {{ .Values.voltha_go_controller.uiPort }}
30 selector:
31 app: "{{ .Chart.Name }}"