summaryrefslogtreecommitdiffstats
path: root/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
commit2a6b3962c617ac2f7dbcb29105955b5f8b2c6060 (patch)
tree867d6b1aaf0bd268e7d19156423c68d4abcd8fa1 /templates/search-data-service-configmap.yaml
parent34fb0cf4e6625ad918710f982399c7e8cf10242b (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 'templates/search-data-service-configmap.yaml')
-rw-r--r--templates/search-data-service-configmap.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/search-data-service-configmap.yaml b/templates/search-data-service-configmap.yaml
new file mode 100644
index 0000000..c392e41
--- /dev/null
+++ b/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 }}