blob: b0af3f73faf5609a12aa3337155120649c4037d4 [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
13{{- if not (hasKey $sbi "registerIPv4") -}}
14{{- $_ := "POD_IP" | set $sbi "registerIPv4" -}}
15{{- end }}
16{{- if not (hasKey $sbi "bindingIPv4") -}}
17{{- $_ := "POD_IP" | set $sbi "bindingIPv4" -}}
18{{- end }}
19{{- if not (hasKey $sbi "port") -}}
20{{- $_ := .Values.config.pcf.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: pcf
29 labels:
30{{ tuple "pcf" . | include "5g-control-plane.metadata_labels" | indent 4 }}
31data:
32 pcf-run.sh: |
33{{ tuple "bin/_pcf-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.pcf.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 }}