Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [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 | --- |
| 18 | apiVersion: v1 |
| 19 | kind: Service |
| 20 | metadata: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 21 | name: cdn-local |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 22 | labels: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 23 | {{ tuple "cdn-local" . | include "cdn-local.metadata_labels" | indent 4 }} |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 24 | spec: |
| 25 | selector: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 26 | {{ tuple "cdn-local" . | include "cdn-local.metadata_labels" | indent 4 }} |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 27 | ports: |
| 28 | - name: http |
| 29 | port: {{ .Values.config.nginx.ports.http }} |
| 30 | protocol: TCP |
| 31 | - name: rtmp |
| 32 | port: {{ .Values.config.nginx.ports.rtmp }} |
| 33 | protocol: TCP |
| 34 | |
Woojoong Kim | 6622ff3 | 2020-02-12 18:39:40 -0800 | [diff] [blame] | 35 | {{- if .Values.config.nginx.ports.nodePorts.enabled }} |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 36 | --- |
| 37 | apiVersion: v1 |
| 38 | kind: Service |
| 39 | metadata: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 40 | name: cdn-local-external |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 41 | labels: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 42 | {{ tuple "cdn-local" . | include "cdn-local.metadata_labels" | indent 4 }} |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 43 | spec: |
| 44 | selector: |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 45 | {{ tuple "cdn-local" . | include "cdn-local.metadata_labels" | indent 4 }} |
Woojoong Kim | 9bcff46 | 2019-09-19 12:59:01 -0700 | [diff] [blame] | 46 | type: NodePort |
| 47 | ports: |
| 48 | - name: http |
| 49 | port: {{ .Values.config.nginx.ports.http }} |
| 50 | protocol: TCP |
| 51 | nodePort: {{ .Values.config.nginx.ports.nodePorts.http }} |
| 52 | - name: rtmp |
| 53 | port: {{ .Values.config.nginx.ports.rtmp }} |
| 54 | protocol: TCP |
Hyunsun Moon | 7f23b2d | 2020-02-02 14:23:28 -0800 | [diff] [blame] | 55 | nodePort: {{ .Values.config.nginx.ports.nodePorts.rtmp }} |
Woojoong Kim | 6622ff3 | 2020-02-12 18:39:40 -0800 | [diff] [blame] | 56 | {{- end }} |