New xApp standard template. This template defines the http and RMR services, and...
[it/dep.git] / ric-xapps / 90-xApps / helm / xapp-std / templates / appconfig.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################'
17
18 apiVersion: v1
19 kind: ConfigMap
20 metadata:
21   name: {{ include "ricxapp.configmapname" . }}-appconfig
22 data:
23 {{- $dbaasservice := .Values.ricplt.dbaasService | quote -}}
24 {{- $pltingressurl := .Values.ricplt.pltIngressUrl | quote -}}
25 {{- $xappingressurl := .Values.ricplt.xappIngressUrl | quote -}}
26 {{- $appmgrrmrservice := .Values.ricplt.appmgrRMRService | quote -}}
27 {{- $e2mgrrmrservice := .Values.ricplt.e2mgrRMRService | quote -}}
28 {{- $e2termrmrservice := .Values.ricplt.e2termRMRService | quote -}}
29 {{- $rtmgrrmrservice := .Values.ricplt.rtmgrRMRService | quote -}}
30 {{- $a1mediatorrmrservice := .Values.ricplt.a1mediatorRMRService | quote -}}
31
32 {{ (.Files.Glob "config/*").AsConfig | replace "__DBAAS_SERVICE__" $dbaasservice | replace "__PLT_INGRESS_URL__" $pltingressurl | replace "__XAPP_INGRESS_URL__" $xappingressurl | replace "__APPMGR_RMR_SERVICE__" $appmgrrmrservice | replace "__E2MGR_RMR_SERVICE__" $e2mgrrmrservice | replace "__E2TERM_RMR_SERVICE__" $e2termrmrservice | replace "__RTMGR_RMR_SERVICE__" $rtmgrrmrservice | replace "__A1MEDIATOR_RMR_SERVICE__" $a1mediatorrmrservice | indent 2 }}