summaryrefslogtreecommitdiffstats
path: root/kubernetes/dcaegen2/templates
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2021-02-12 10:37:17 +0100
committerZebek Bogumil <bogumil.zebek@nokia.com>2021-02-15 12:10:26 +0100
commiteca8c6cefeda57447fcbb445cac3fd925b37bca6 (patch)
tree41ba6ae556ee23ef82536f91e672ba8afc68bcb4 /kubernetes/dcaegen2/templates
parentcf8f42f496f9f062964f0b62a4de7ba2ef0a72ee (diff)
[DCAEGEN2] Add external configmaps
Add config maps which will be used by dcaegen2: ves-open-api and ves component. Issue-ID: DCAEGEN2-2576 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Iaf5df2d69cc53d4f420e340c0336f4920fef6d6d
Diffstat (limited to 'kubernetes/dcaegen2/templates')
-rw-r--r--kubernetes/dcaegen2/templates/configmap.yaml18
1 files changed, 17 insertions, 1 deletions
diff --git a/kubernetes/dcaegen2/templates/configmap.yaml b/kubernetes/dcaegen2/templates/configmap.yaml
index 4a1877f02e..d595fee316 100644
--- a/kubernetes/dcaegen2/templates/configmap.yaml
+++ b/kubernetes/dcaegen2/templates/configmap.yaml
@@ -23,4 +23,20 @@ metadata:
name: {{ include "common.release" . }}-dcae-expected-components
namespace: {{ include "common.namespace" . }}
data:
-{{ tpl (.Files.Glob "resources/*").AsConfig . | indent 2 }} \ No newline at end of file
+{{ tpl (.Files.Glob "resources/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: dcae-external-repo-configmap-schema-map
+ namespace: {{ include "common.namespace" . }}
+data:
+ {{ (.Files.Glob "resources/external/map/*").AsConfig | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: dcae-external-repo-configmap-sa88-rel16
+ namespace: {{ include "common.namespace" . }}
+data:
+ {{ (.Files.Glob "resources/external/schema/rel16/*").AsConfig | indent 2 }}