Hyunsun Moon | ed24cac | 2019-08-26 20:52:20 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | Copyright 2019-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 | */}} |
| 16 | |
| 17 | --- |
Hyunsun Moon | ed24cac | 2019-08-26 20:52:20 -0500 | [diff] [blame] | 18 | apiVersion: v1 |
| 19 | kind: Service |
| 20 | metadata: |
Hyunsun Moon | 834c28f | 2019-12-05 18:26:22 -0800 | [diff] [blame] | 21 | name: hss |
Hyunsun Moon | ed24cac | 2019-08-26 20:52:20 -0500 | [diff] [blame] | 22 | labels: |
| 23 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| 24 | spec: |
| 25 | selector: |
| 26 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
Hyunsun Moon | ed24cac | 2019-08-26 20:52:20 -0500 | [diff] [blame] | 27 | ports: |
| 28 | - name: s6a |
| 29 | port: 3868 |
| 30 | protocol: TCP |
Hyunsun Moon | 834c28f | 2019-12-05 18:26:22 -0800 | [diff] [blame] | 31 | --- |
| 32 | apiVersion: v1 |
| 33 | kind: Service |
| 34 | metadata: |
| 35 | name: hss-headless |
| 36 | labels: |
| 37 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| 38 | spec: |
| 39 | selector: |
| 40 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| 41 | clusterIP: None |
| 42 | ports: |
| 43 | - name: s6a |
| 44 | port: 3868 |
| 45 | protocol: TCP |
| 46 | {{- if .Values.config.hss.s6a.nodePort.enabled }} |
| 47 | --- |
| 48 | apiVersion: v1 |
| 49 | kind: Service |
| 50 | metadata: |
| 51 | name: hss-external |
| 52 | labels: |
| 53 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| 54 | spec: |
| 55 | selector: |
| 56 | {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| 57 | type: NodePort |
| 58 | ports: |
| 59 | - name: s6a |
| 60 | port: 3868 |
| 61 | protocol: TCP |
Hyunsun Moon | ed24cac | 2019-08-26 20:52:20 -0500 | [diff] [blame] | 62 | nodePort: {{ .Values.config.hss.s6a.nodePort.port }} |
Hyunsun Moon | 834c28f | 2019-12-05 18:26:22 -0800 | [diff] [blame] | 63 | {{- end }} |