diff options
author | Mandeep Khinda <Mandeep.Khinda@amdocs.com> | 2018-04-06 18:04:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-06 18:04:52 +0000 |
commit | 2afcb1dc12cb7db9737068966235204059b3ae46 (patch) | |
tree | 192db4a5ee04d86f202f195f9622f884760a9cff /kubernetes/dmaap/templates/configmap.yaml | |
parent | 72f4e9b34adb4b2e134ee44e9fe0a2e039453378 (diff) | |
parent | 50aafc5ef50a1280c9e85d12be3d24104258ae95 (diff) |
Merge "Initial chart for dmaap - 2nd attempt"
Diffstat (limited to 'kubernetes/dmaap/templates/configmap.yaml')
-rw-r--r-- | kubernetes/dmaap/templates/configmap.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kubernetes/dmaap/templates/configmap.yaml b/kubernetes/dmaap/templates/configmap.yaml new file mode 100644 index 0000000000..0d6a348249 --- /dev/null +++ b/kubernetes/dmaap/templates/configmap.yaml @@ -0,0 +1,21 @@ +# Copyright © 2018 AT&T Intellectual Property. All rights reserved. +# +# 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" . }}-configmap + namespace: {{ .Values.global.nsPrefix }} +data: +{{ tpl (.Files.Glob "resources/config/buscontroller.env").AsConfig . | indent 2 }} |