diff options
author | shrikantawachar <shrikant.awachar@amdocs.com> | 2019-01-16 13:12:21 +0530 |
---|---|---|
committer | shrikantawachar <shrikant.awachar@amdocs.com> | 2019-01-18 17:39:02 +0530 |
commit | 0c84bc3c74f77b8ef030c3cf2f40cc1d652a237b (patch) | |
tree | 89e5a02a61a4d35e8f02ece0386d096edaa412ca /kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml | |
parent | 6758b55235ad56583163aa6abdb388c082c412f4 (diff) |
Allow custom plugins in SDC
Allow custom plugins in SDC
Change-Id: I48b3defca43de1fed4916ef5b9e27324d22af75e
Issue-ID: SDC-2022
Signed-off-by: shrikantawachar <shrikant.awachar@amdocs.com>
Diffstat (limited to 'kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml')
-rw-r--r-- | kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml index 9a342638ce..46ba241b9c 100644 --- a/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml +++ b/kubernetes/sdc/charts/sdc-fe/templates/deployment.yaml @@ -98,6 +98,9 @@ spec: readOnly: true - name: {{ include "common.fullname" . }}-logs mountPath: /var/log/onap + - name: {{ include "common.fullname" . }}-configs + mountPath: /var/lib/jetty/config/catalog-fe/plugins-configuration.yaml + subPath: plugins-configuration.yaml - name: {{ include "common.fullname" . }}-logback mountPath: /tmp/logback.xml subPath: logback.xml @@ -126,6 +129,10 @@ spec: name: {{ .Release.Name }}-sdc-filebeat-configmap - name: {{ include "common.fullname" . }}-data-filebeat emptyDir: {} + - name: {{ include "common.fullname" . }}-configs + configMap: + name : {{ include "common.fullname" . }}-plugins-configmap + defaultMode: 0777 - name: {{ include "common.fullname" . }}-logback configMap: name : {{ include "common.fullname" . }}-logging-configmap |