blob: 6ebf0b1026706dad3f376a93fc10d3aa0059679a [file] [log] [blame]
Jakub Latusek647e2cf2020-10-21 13:27:09 +02001{{/*
Mukul2b4e7532018-08-03 10:41:29 +00002# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusek647e2cf2020-10-21 13:27:09 +020015*/}}
Mukul2b4e7532018-08-03 10:41:29 +000016
Mike Elliott13fed112018-02-28 08:33:33 -050017apiVersion: v1
18kind: ConfigMap
19metadata:
20 name: {{ include "common.fullname" . }}-onap-sdnc-bin
21 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000022 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000026 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050027data:
Aaron Hay84e2c342018-04-17 12:37:31 -040028{{ tpl (.Files.Glob "resources/config/appc/opt/onap/ccsdk/bin/*").AsConfig . | indent 2 }}
Mike Elliott13fed112018-02-28 08:33:33 -050029---
30apiVersion: v1
31kind: ConfigMap
32metadata:
33 name: {{ include "common.fullname" . }}-onap-sdnc-data-properties
34 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000035 labels:
36 app: {{ include "common.name" . }}
37 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010038 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000039 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050040data:
Aaron Hay84e2c342018-04-17 12:37:31 -040041{{ tpl (.Files.Glob "resources/config/appc/opt/onap/ccsdk/data/properties/*").AsConfig . | indent 2 }}
Mike Elliott13fed112018-02-28 08:33:33 -050042---
43apiVersion: v1
44kind: ConfigMap
45metadata:
46 name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-bin
47 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000048 labels:
49 app: {{ include "common.name" . }}
50 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010051 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000052 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050053data:
Aaron Hay84e2c342018-04-17 12:37:31 -040054{{ tpl (.Files.Glob "resources/config/appc/opt/onap/ccsdk/svclogic/bin/*").AsConfig . | indent 2 }}
Mike Elliott13fed112018-02-28 08:33:33 -050055---
56apiVersion: v1
57kind: ConfigMap
58metadata:
59 name: {{ include "common.fullname" . }}-onap-sdnc-svclogic-config
60 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000061 labels:
62 app: {{ include "common.name" . }}
63 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010064 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000065 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050066data:
Aaron Hay84e2c342018-04-17 12:37:31 -040067{{ tpl (.Files.Glob "resources/config/appc/opt/onap/ccsdk/svclogic/config/*").AsConfig . | indent 2 }}
Mike Elliott13fed112018-02-28 08:33:33 -050068---
69apiVersion: v1
70kind: ConfigMap
71metadata:
72 name: {{ include "common.fullname" . }}-onap-appc-bin
73 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000074 labels:
75 app: {{ include "common.name" . }}
76 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010077 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000078 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050079data:
80{{ tpl (.Files.Glob "resources/config/appc/opt/onap/appc/bin/*").AsConfig . | indent 2 }}
81---
82apiVersion: v1
83kind: ConfigMap
84metadata:
85 name: {{ include "common.fullname" . }}-onap-appc-data-properties
86 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000087 labels:
88 app: {{ include "common.name" . }}
89 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010090 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +000091 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -050092data:
93{{ tpl (.Files.Glob "resources/config/appc/opt/onap/appc/data/properties/*").AsConfig . | indent 2 }}
94---
95apiVersion: v1
96kind: ConfigMap
97metadata:
98 name: {{ include "common.fullname" . }}-onap-appc-svclogic-bin
99 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000100 labels:
101 app: {{ include "common.name" . }}
102 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100103 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000104 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -0500105data:
106{{ tpl (.Files.Glob "resources/config/appc/opt/onap/appc/svclogic/bin/*").AsConfig . | indent 2 }}
107---
108apiVersion: v1
109kind: ConfigMap
110metadata:
111 name: {{ include "common.fullname" . }}-onap-appc-svclogic-config
112 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000113 labels:
114 app: {{ include "common.name" . }}
115 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100116 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000117 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -0500118data:
119{{ tpl (.Files.Glob "resources/config/appc/opt/onap/appc/svclogic/config/*").AsConfig . | indent 2 }}
120---
121apiVersion: v1
122kind: ConfigMap
123metadata:
Mike Elliott13fed112018-02-28 08:33:33 -0500124 name: {{ include "common.fullname" . }}-logging-cfg
125 namespace: {{ include "common.namespace" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000126 labels:
127 app: {{ include "common.name" . }}
128 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100129 release: {{ include "common.release" . }}
vaibhav_16dece52f7962018-09-06 06:28:40 +0000130 heritage: {{ .Release.Service }}
Mike Elliott13fed112018-02-28 08:33:33 -0500131data:
132{{ tpl (.Files.Glob "resources/config/log/*").AsConfig . | indent 2 }}
Sylvain Desbureaux531d03f2020-04-22 10:37:45 +0200133
134{{ include "common.log.configMap" . }}