blob: dbfccf5ecca57a454d2b29bec36395a0b9062e58 [file] [log] [blame]
Hyunsun Mooned24cac2019-08-26 20:52:20 -05001{{/*
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---
Hyunsun Mooned24cac2019-08-26 20:52:20 -050018apiVersion: v1
19kind: Service
20metadata:
21 name: hss-s6a
22 labels:
23{{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }}
24spec:
25 selector:
26{{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }}
27{{- if .Values.config.hss.s6a.nodePort.enabled }}
28 type: NodePort
29{{- end }}
30 ports:
31 - name: s6a
32 port: 3868
33 protocol: TCP
34 {{- if .Values.config.hss.s6a.nodePort.enabled }}
35 nodePort: {{ .Values.config.hss.s6a.nodePort.port }}
36 {{- end }}