diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2019-04-22 17:52:13 -0700 |
---|---|---|
committer | Alexis de Talhouƫt <adetalhouet89@gmail.com> | 2019-05-13 13:44:38 +0000 |
commit | e2ba7c834a9f7f74227ff7733a673c1ba7fc4c15 (patch) | |
tree | 8f270a99778c8bba184f5d633f82d786823493d4 /kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml | |
parent | 0b30da1b5a3b57d67eb3bbd35c423780a91b677e (diff) |
Add helm charts for multicloud-k8s
Add helm charts for multicloud-k8s
Add support for access via msb internal gateway
Use 9015 port instead to align with other Multicloud
services
Add Makefile under multicloud to do helm dep up for k8s
as k8s uses the mongo chart in its requirements.yaml
Update licenses
Issue-ID: ONAPARC-363
Change-Id: I31aaf9e97a3807501af5bf7e56b3df53dfc22074
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml')
-rw-r--r-- | kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml b/kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml new file mode 100644 index 0000000000..c9d55fedf3 --- /dev/null +++ b/kubernetes/multicloud/charts/multicloud-k8s/templates/configmap.yaml @@ -0,0 +1,28 @@ +{{/* +# Copyright 2019 Intel Corporation, Inc +# +# 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" . }} + namespace: {{ include "common.namespace" . }} + labels: + app: {{ include "common.name" . }} + chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +data: +{{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }} |