blob: 502fa06ca81e6ccedb0a135a060987c8eb703c56 [file] [log] [blame]
Badhrinath987e1d82020-11-20 13:23:58 -06001{{/*
2# Copyright 2020-present Open Networking Foundation
3
4# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
5*/}}
6
7{{- if .Values.config.smf.deploy }}
Hyunsun Moon6a651482021-02-26 01:46:44 -08008
Hyunsun Moonc73636b2021-03-24 15:47:08 -07009{{- if not .Values.config.useExistingConfigMap -}}
Hyunsun Moon6a651482021-02-26 01:46:44 -080010{{- $smfcfg := index .Values.config.smf.cfgFiles "smfcfg.conf" }}
11{{- $sbi := index $smfcfg.configuration "sbi" }}
12
13{{- if not (hasKey $smfcfg.configuration "pfcp") -}}
14{{- $_ := dict "addr" "POD_IP" | set $smfcfg.configuration "pfcp" -}}
15{{- end }}
Ajay Lotan Thakuref182f42021-05-25 16:41:19 -050016{{- if not (hasKey $smfcfg "logger") -}}
17{{- $_ := .Values.config.logger | set $smfcfg "logger" -}}
18{{- end }}
Hyunsun Moon6a651482021-02-26 01:46:44 -080019{{- if not (hasKey $sbi "port") -}}
20{{- $_ := .Values.config.smf.sbi.port | set $sbi "port" -}}
21{{- end }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070022{{- end }}
Hyunsun Moon6a651482021-02-26 01:46:44 -080023
Badhrinath987e1d82020-11-20 13:23:58 -060024---
25apiVersion: v1
26kind: ConfigMap
27metadata:
28 name: smf
29 labels:
30{{ tuple "smf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
31data:
32 smf-run.sh: |
33{{ tuple "bin/_smf-run.sh.tpl" . | include "5g-control-plane.template" | indent 4 }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070034{{- if not .Values.config.useExistingConfigMap -}}
Hyunsun Moon6a651482021-02-26 01:46:44 -080035{{- range $key, $value := .Values.config.smf.cfgFiles }}
Badhrinath987e1d82020-11-20 13:23:58 -060036 {{ $key }}: |-
37{{ toYaml $value | indent 4 }}
38{{- end }}
39{{- end }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070040{{- end }}