diff options
author | mayankg2703 <mayank.gupta@amdocs.com> | 2018-02-06 10:28:00 +0000 |
---|---|---|
committer | mayankg2703 <mayank.gupta@amdocs.com> | 2018-02-06 10:28:39 +0000 |
commit | 135d891e43beddfe19048bb250d6450c7f7747b8 (patch) | |
tree | 1d2cd67e2cac48678812f97d95d1c11a50808060 /kubernetes/aai/templates/modelloader-deployment-configmap.yaml | |
parent | 19ce27937094bdb2d9ffc6b6d7eadf6e66d29a9c (diff) |
config seg aai model loader
Change-Id: I868acb11ba195a9415d54d2a9352c120a8b76e08
Issue-ID: OOM-662
Signed-off-by: mayankg2703 <mayank.gupta@amdocs.com>
Diffstat (limited to 'kubernetes/aai/templates/modelloader-deployment-configmap.yaml')
-rw-r--r-- | kubernetes/aai/templates/modelloader-deployment-configmap.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kubernetes/aai/templates/modelloader-deployment-configmap.yaml b/kubernetes/aai/templates/modelloader-deployment-configmap.yaml new file mode 100644 index 0000000000..7f37bd605b --- /dev/null +++ b/kubernetes/aai/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 }} |