diff options
author | Alexis de Talhouët <alexis.de_talhouet@bell.ca> | 2018-12-04 12:55:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-04 12:55:38 +0000 |
commit | 2d1df02d04088baf788a7ee16d8560387d491098 (patch) | |
tree | 5fa3dc06df223b8a7187c76fe8714919820669a9 /kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml | |
parent | b5ddca06e8df2c49c1c8e9d5df2dacb77110695e (diff) | |
parent | b36bfcced5950837824367ce89c16bd43377340f (diff) |
Merge "Add SDNC Context Builder to POMBA OOM"
Diffstat (limited to 'kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml')
-rw-r--r-- | kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml b/kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml new file mode 100644 index 0000000000..7c47fea02c --- /dev/null +++ b/kubernetes/pomba/charts/pomba-sdncctxbuilder/templates/configmap.yaml @@ -0,0 +1,30 @@ +# Copyright © 2018 Amdocs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-log + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/logback.xml").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-configmap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/config/application.properties").AsConfig . | indent 2 }} |