diff options
author | othman touijer <othman.touijer@soprasteria.com> | 2021-12-01 16:21:18 +0100 |
---|---|---|
committer | othman touijer <othman.touijer@soprasteria.com> | 2021-12-01 16:21:18 +0100 |
commit | 5117667a9bfd9f4bc93c4a8a7c20a8514868da19 (patch) | |
tree | bb0f0d6ebcd5ec98a0cdf26b7888f03b4381c04c /kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml | |
parent | 9a194893d2e134532603292603cc297851640ecc (diff) |
[AAI] Service Mesh related
Sets conditions on volumes that are not mounted when AAF is disabled.
Issue-ID: OOM-2887
Signed-off-by: othman touijer <othman.touijer@soprasteria.com>
Change-Id: If5613bf22d3dbfe527be77726cb1b14a538a2e04
Diffstat (limited to 'kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml')
-rw-r--r-- | kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml b/kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml index 6b58eaa3fd..cccc2b1e66 100644 --- a/kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml +++ b/kubernetes/aai/components/aai-graphadmin/templates/deployment.yaml @@ -222,12 +222,14 @@ spec: - name: config configMap: name: {{ include "common.fullname" . }} - - name: properties-input - configMap: - name: {{ include "common.fullname" . }}-properties - name: properties + {{- if .Values.global.aafEnabled }} emptyDir: medium: Memory + - name: properties-input + {{- end }} + configMap: + name: {{ include "common.fullname" . }}-properties restartPolicy: {{ .Values.restartPolicy }} imagePullSecrets: - name: {{ include "common.namespace" . }}-docker-registry-key |