aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorothman touijer <othman.touijer@soprasteria.com>2021-12-03 09:45:37 +0100
committerothman touijer <othman.touijer@soprasteria.com>2021-12-03 09:45:37 +0100
commit5ef62c181d66b6b0362e05bbe911c5d939578dbf (patch)
tree420f2b960022c7664e2bfeb40a178229697d10a5
parent9a194893d2e134532603292603cc297851640ecc (diff)
[AAI] Service Mesh related
Define required env variable for babel keystore, even when AAF is not enabled. Component will not start otherwise. Issue-ID: OOM-2887 Signed-off-by: othman touijer <othman.touijer@soprasteria.com> Change-Id: I1bf155683ef04c211f75cb82dd4779f8b6375aac
-rw-r--r--kubernetes/aai/components/aai-babel/templates/deployment.yaml4
1 files changed, 4 insertions, 0 deletions
diff --git a/kubernetes/aai/components/aai-babel/templates/deployment.yaml b/kubernetes/aai/components/aai-babel/templates/deployment.yaml
index bd6b8c728c..38a4e484c3 100644
--- a/kubernetes/aai/components/aai-babel/templates/deployment.yaml
+++ b/kubernetes/aai/components/aai-babel/templates/deployment.yaml
@@ -70,6 +70,10 @@ spec:
initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.readiness.periodSeconds }}
env:
+ {{- if not (include "common.needTLS" .) }}
+ - name: KEY_STORE_PASSWORD
+ value: NotUsed
+ {{- end }}
- name: CONFIG_HOME
value: /opt/app/babel/config
volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}