summaryrefslogtreecommitdiffstats
path: root/templates/modelloader-deployment-configmap.yaml
diff options
context:
space:
mode:
authormayankg2703 <mayank.gupta@amdocs.com>2018-02-06 10:28:00 +0000
committermayankg2703 <mayank.gupta@amdocs.com>2018-02-06 10:28:39 +0000
commitb30d7b480ef73b02feaf377d20ba2438235e86d0 (patch)
treea4619da8e26919b38cfb674ba5a71dda92b69cff /templates/modelloader-deployment-configmap.yaml
parent34fb0cf4e6625ad918710f982399c7e8cf10242b (diff)
config seg aai model loader
Change-Id: I868acb11ba195a9415d54d2a9352c120a8b76e08 Issue-ID: OOM-662 Signed-off-by: mayankg2703 <mayank.gupta@amdocs.com>
Diffstat (limited to 'templates/modelloader-deployment-configmap.yaml')
-rw-r--r--templates/modelloader-deployment-configmap.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/modelloader-deployment-configmap.yaml b/templates/modelloader-deployment-configmap.yaml
new file mode 100644
index 0000000..7f37bd6
--- /dev/null
+++ b/templates/modelloader-deployment-configmap.yaml
@@ -0,0 +1,18 @@
+#{{ if not .Values.disableAaiModelLoaderService }}
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: model-loader-prop-configmap
+ namespace: {{ .Values.nsPrefix }}-aai
+data:
+{{ tpl (.Files.Glob "resources/config/model-loader/appconfig/model-loader.properties").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: Secret
+metadata:
+ name: model-loader-secret
+ namespace: {{ .Values.nsPrefix }}-aai
+type: Opaque
+data:
+{{ tpl (.Files.Glob "resources/config/model-loader/appconfig/auth/*").AsSecrets . | indent 2 }}
+#{{ end }}