summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/templates/search-data-service-configmap.yaml
diff options
context:
space:
mode:
authormayankg2703 <mayank.gupta@amdocs.com>2018-02-06 10:24:30 +0000
committermayankg2703 <mayank.gupta@amdocs.com>2018-02-06 10:25:03 +0000
commit28d3291692450445484c66807d5eb841443169c9 (patch)
tree2ccce36fb3471b8c5f4bfa8498e2b960591efe81 /kubernetes/aai/templates/search-data-service-configmap.yaml
parent19ce27937094bdb2d9ffc6b6d7eadf6e66d29a9c (diff)
config seg aai search data service
Change-Id: Ie0229756fabb37a88f46c3d6eb864531660885a8 Issue-ID: OOM-663 Signed-off-by: mayankg2703 <mayank.gupta@amdocs.com>
Diffstat (limited to 'kubernetes/aai/templates/search-data-service-configmap.yaml')
-rw-r--r--kubernetes/aai/templates/search-data-service-configmap.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/kubernetes/aai/templates/search-data-service-configmap.yaml b/kubernetes/aai/templates/search-data-service-configmap.yaml
new file mode 100644
index 0000000000..c392e412aa
--- /dev/null
+++ b/kubernetes/aai/templates/search-data-service-configmap.yaml
@@ -0,0 +1,26 @@
+#{{ if not .Values.disableAaiSearchDataService }}
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: search-data-configmap
+ namespace: {{ .Values.nsPrefix }}-aai
+data:
+{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: search-data-keystone-secret
+ namespace: {{ .Values.nsPrefix }}-aai
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/auth/tomcat_keystore").AsSecrets . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: aai-search-policy-configmap
+ namespace: {{ .Values.nsPrefix }}-aai
+data:
+{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/auth/search_policy.json").AsSecrets . | indent 2 }}
+#{{ end }}