blob: 795b247c7712279715c275c87bdfa40976f8e3e7 [file] [log] [blame]
mc43cc9b22019-07-18 21:32:37 +00001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: v1
17kind: Service
18metadata:
19 name: device-management
20 labels:
21 release: {{ .Release.Name }}
22spec:
23 type: NodePort
24 ports:
mce0544d42019-07-26 18:18:55 +000025 - name: http
26 port: 8080
mc43cc9b22019-07-18 21:32:37 +000027 targetPort: 8080
mc8b31c582019-09-03 21:55:21 +000028 nodePort: {{ .Values.device_management_httpPort }}
mc43cc9b22019-07-18 21:32:37 +000029 protocol: TCP
mce0544d42019-07-26 18:18:55 +000030 - name: grpc
31 port: 50051
mc43cc9b22019-07-18 21:32:37 +000032 targetPort: 50051
mc8b31c582019-09-03 21:55:21 +000033 nodePort: {{ .Values.device_management_grpcPort }}
mc43cc9b22019-07-18 21:32:37 +000034 protocol: TCP
35 selector:
36 app: "device-management"