diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-04-30 06:03:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-04-30 06:03:04 +0000 |
commit | c903b986e64ea873f3885951f70638e20ff667de (patch) | |
tree | 31349dd58ffcb9d4c75a6fbb0005eb43c80cc5ab /kubernetes/dcaegen2-services/common | |
parent | 67b00ed51a19e75e3ac017d30ee45ea1aa9b6681 (diff) | |
parent | 4bb3da3dccebf6abdb390d80ac3c4e323ed43250 (diff) |
Merge "[DCEAGEN] Add app-config volume mount to common dceagen2 template"
Diffstat (limited to 'kubernetes/dcaegen2-services/common')
-rw-r--r-- | kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl b/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl index 94b6ace2f2..80b4cbc77b 100644 --- a/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl +++ b/kubernetes/dcaegen2-services/common/dcaegen2-services-common/templates/_deployment.tpl @@ -225,8 +225,9 @@ spec: {{- end }} {{- end }} resources: {{ include "common.resources" . | nindent 2 }} - {{- if or $logDir $certDir }} volumeMounts: + - mountPath: /app-config + name: app-config {{- if $logDir }} - mountPath: {{ $logDir}} name: component-log @@ -235,7 +236,6 @@ spec: - mountPath: {{ $certDir }} name: tls-info {{- end }} - {{- end }} {{- if $logDir }} - image: {{ include "repositoryGenerator.image.logging" . }} imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |