diff options
author | 2024-04-22 15:14:43 +0000 | |
---|---|---|
committer | 2024-04-22 15:14:43 +0000 | |
commit | c64f1c0954e631709083499f6d1c80258c7809ee (patch) | |
tree | 01ec9dac43071954a97c37ca6503b22f81512faf /kubernetes/aai/components/aai-modelloader/templates | |
parent | 31ed63f0d15aad775eac50e309ad21f732dfb228 (diff) | |
parent | ca06856557a33f8203d1c5550d436471784dc374 (diff) |
Merge "[AAI] Add model-loader tracing config"
Diffstat (limited to 'kubernetes/aai/components/aai-modelloader/templates')
-rw-r--r-- | kubernetes/aai/components/aai-modelloader/templates/configmap.yaml | 1 | ||||
-rw-r--r-- | kubernetes/aai/components/aai-modelloader/templates/deployment.yaml | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/kubernetes/aai/components/aai-modelloader/templates/configmap.yaml b/kubernetes/aai/components/aai-modelloader/templates/configmap.yaml index 534fd021da..d3fd509dcd 100644 --- a/kubernetes/aai/components/aai-modelloader/templates/configmap.yaml +++ b/kubernetes/aai/components/aai-modelloader/templates/configmap.yaml @@ -26,6 +26,7 @@ metadata: heritage: {{ .Release.Service }} data: {{ tpl (.Files.Glob "resources/config/model-loader.properties").AsConfig . | indent 2 }} +{{ tpl (.Files.Glob "resources/application.properties").AsConfig . | indent 2 }} --- apiVersion: v1 kind: ConfigMap diff --git a/kubernetes/aai/components/aai-modelloader/templates/deployment.yaml b/kubernetes/aai/components/aai-modelloader/templates/deployment.yaml index 139c254736..8dee92f77e 100644 --- a/kubernetes/aai/components/aai-modelloader/templates/deployment.yaml +++ b/kubernetes/aai/components/aai-modelloader/templates/deployment.yaml @@ -80,6 +80,9 @@ spec: - mountPath: /opt/app/model-loader/config/model-loader.properties subPath: model-loader.properties name: prop-config + - mountPath: /opt/app/model-loader/application.properties + subPath: application.properties + name: prop-config - mountPath: {{ .Values.log.path }} name: logs - mountPath: /opt/app/model-loader/logback.xml |