| {{/* |
| # Copyright 2020-present Open Networking Foundation |
| |
| # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| */}} |
| |
| {{- if .Values.config.ausf.deploy }} |
| --- |
| apiVersion: v1 |
| kind: Service |
| metadata: |
| name: ausf |
| labels: |
| {{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| spec: |
| type: ClusterIP |
| selector: |
| {{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| ports: |
| - name: prometheus-exporter |
| port: {{ .Values.config.ausf.prometheus.port }} |
| protocol: TCP |
| - name: sbi |
| port: {{ .Values.config.ausf.sbi.port }} |
| protocol: TCP |
| {{- if or .Values.config.ausf.prometheus.nodePort.enabled .Values.config.ausf.sbi.nodePort.enabled }} |
| --- |
| apiVersion: v1 |
| kind: Service |
| metadata: |
| name: ausf-external |
| labels: |
| {{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| spec: |
| type: NodePort |
| selector: |
| {{ tuple "ausf" . | include "5g-control-plane.metadata_labels" | indent 4 }} |
| ports: |
| {{- if .Values.config.ausf.prometheus.nodePort.enabled }} |
| - name: prometheus-exporter |
| port: {{ .Values.config.ausf.prometheus.port }} |
| protocol: TCP |
| nodePort: {{ .Values.config.ausf.prometheus.nodePort.port }} |
| {{- end }} |
| {{- if .Values.config.ausf.sbi.nodePort.enabled }} |
| - name: sbi |
| port: {{ .Values.config.ausf.sbi.port }} |
| protocol: TCP |
| nodePort: {{ .Values.config.ausf.sbi.nodePort.port }} |
| {{- end }} |
| {{- end }} |
| {{- end }} |