badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright 2020-present Open Networking Foundation |
| 3 | |
Ajay Lotan Thakur | 03189d2 | 2022-02-10 14:06:03 -0600 | [diff] [blame] | 4 | # SPDX-License-Identifier: Apache-2.0 |
badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 5 | */}} |
| 6 | |
| 7 | {{- if .Values.config.simapp.deploy }} |
| 8 | --- |
| 9 | apiVersion: v1 |
| 10 | kind: Service |
| 11 | metadata: |
| 12 | name: simapp |
| 13 | labels: |
| 14 | {{ tuple "simapp" . | include "omec-sub-provision.metadata_labels" | indent 4 }} |
| 15 | spec: |
| 16 | type: ClusterIP |
| 17 | selector: |
| 18 | {{ tuple "simapp" . | include "omec-sub-provision.metadata_labels" | indent 4 }} |
| 19 | ports: |
| 20 | - name: prometheus-exporter |
| 21 | port: {{ .Values.config.simapp.prometheus.port }} |
| 22 | protocol: TCP |
| 23 | - name: config-exporter |
| 24 | port: {{ .Values.config.simapp.config.port }} |
| 25 | protocol: TCP |
| 26 | {{- if .Values.config.simapp.prometheus.nodePort.enabled }} |
| 27 | --- |
| 28 | apiVersion: v1 |
| 29 | kind: Service |
| 30 | metadata: |
| 31 | name: simapp-external |
| 32 | labels: |
| 33 | {{ tuple "simapp" . | include "omec-sub-provision.metadata_labels" | indent 4 }} |
| 34 | spec: |
| 35 | type: NodePort |
| 36 | selector: |
| 37 | {{ tuple "simapp" . | include "omec-sub-provision.metadata_labels" | indent 4 }} |
| 38 | ports: |
| 39 | {{- if .Values.config.simapp.prometheus.nodePort.enabled }} |
| 40 | - name: prometheus-exporter |
| 41 | port: {{ .Values.config.simapp.prometheus.port }} |
| 42 | protocol: TCP |
| 43 | nodePort: {{ .Values.config.simapp.prometheus.nodePort.port }} |
| 44 | {{- end }} |
| 45 | {{- if .Values.config.simapp.config.nodePort.enabled }} |
| 46 | - name: config-exporter |
| 47 | port: {{ .Values.config.simapp.config.port }} |
| 48 | protocol: TCP |
| 49 | nodePort: {{ .Values.config.simapp.config.nodePort.port }} |
| 50 | {{- end }} |
| 51 | {{- end }} |
| 52 | {{- end }} |