blob: df584d9fb6218022de1f94212cc0a4398ff36644 [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.pcf.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{{- $pcfcfg := index .Values.config.pcf.cfgFiles "pcfcfg.conf" }}
11{{- $sbi := index $pcfcfg.configuration "sbi" }}
12
Hyunsun Moon6a651482021-02-26 01:46:44 -080013{{- if not (hasKey $sbi "port") -}}
14{{- $_ := .Values.config.pcf.sbi.port | set $sbi "port" -}}
15{{- end }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070016{{- end }}
Hyunsun Moon6a651482021-02-26 01:46:44 -080017
Badhrinath987e1d82020-11-20 13:23:58 -060018---
19apiVersion: v1
20kind: ConfigMap
21metadata:
22 name: pcf
23 labels:
24{{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
25data:
26 pcf-run.sh: |
27{{ tuple "bin/_pcf-run.sh.tpl" . | include "5g-control-plane.template" | indent 4 }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070028{{- if not .Values.config.useExistingConfigMap -}}
Hyunsun Moon6a651482021-02-26 01:46:44 -080029{{- range $key, $value := .Values.config.pcf.cfgFiles }}
Badhrinath987e1d82020-11-20 13:23:58 -060030 {{ $key }}: |-
31{{ toYaml $value | indent 4 }}
32{{- end }}
33{{- end }}
Hyunsun Moonc73636b2021-03-24 15:47:08 -070034{{- end }}