blob: c392e412aa09c8bdaa63ae6221c56492335eec5c [file] [log] [blame]
mayankg270328d32912018-02-06 10:24:30 +00001#{{ if not .Values.disableAaiSearchDataService }}
2apiVersion: v1
3kind: ConfigMap
4metadata:
5 name: search-data-configmap
6 namespace: {{ .Values.nsPrefix }}-aai
7data:
8{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/*").AsConfig . | indent 2 }}
9---
10apiVersion: v1
11kind: Secret
12metadata:
13 name: search-data-keystone-secret
14 namespace: {{ .Values.nsPrefix }}-aai
15type: Opaque
16data:
17{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/auth/tomcat_keystore").AsSecrets . | indent 2 }}
18---
19apiVersion: v1
20kind: ConfigMap
21metadata:
22 name: aai-search-policy-configmap
23 namespace: {{ .Values.nsPrefix }}-aai
24data:
25{{ tpl (.Files.Glob "resources/config/search-data-service/appconfig/auth/search_policy.json").AsSecrets . | indent 2 }}
26#{{ end }}