blob: a9cdd2d23259a7dcb0b3b85649444e14443e6a96 [file] [log] [blame]
Hyunsun Mooncbc41f12020-02-27 11:23:05 -08001{{/*
2Copyright 2019-present Open Networking Foundation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/}}
16
17{{- $context := . -}}
18{{ range .Values.config.phylo.sources }}
19{{- $name := printf "%s-%s" "phylo" .key -}}
20---
21apiVersion: v1
22kind: Service
23metadata:
24 name: rtsp-server-{{ .key }}-external
25 labels:
26{{ tuple $name $context | include "phylo.metadata_labels" | indent 4 }}
27spec:
28 selector:
29{{ tuple $name $context | include "phylo.metadata_labels" | indent 4 }}
30 ports:
31 - port: 8554
32 targetPort: 8554
33 protocol: TCP
Hyunsun Mooncbc41f12020-02-27 11:23:05 -080034 name: tcp-8554
35 type: NodePort
36{{ end }}