diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-11-04 18:22:19 +0100 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2020-11-04 20:05:36 +0000 |
commit | e33ecd1a590fc1896457e82694aae2582dcf2d54 (patch) | |
tree | 4d4a6cf9f6b209287039c74a7a71d4c9b6bff666 /kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml | |
parent | 207539f4c6cb2c2f8e464117561c77367eb290a2 (diff) |
[SDC] Re-enable the cert storage
Re-enable the cert storage for secure package of the onboarding be
Issue-ID: SDC-3361
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Signed-off-by: Xue Gao <xg353y@intl.att.com>
Change-Id: I4325ebdaa2c52432150097032974e11668731492
Diffstat (limited to 'kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml')
-rw-r--r-- | kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml b/kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml index 007b1308c0..74757c7be2 100644 --- a/kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml +++ b/kubernetes/sdc/components/sdc-onboarding-be/templates/deployment.yaml @@ -151,6 +151,8 @@ spec: readOnly: true - name: {{ include "common.fullname" . }}-logs mountPath: /var/log/onap + - name: {{ include "common.fullname" . }}-cert-storage + mountPath: "{{ .Values.cert.certDir }}" - name: {{ include "common.fullname" . }}-logback mountPath: /tmp/logback.xml subPath: logback.xml @@ -197,5 +199,8 @@ spec: emptyDir: { medium: "Memory" } - name: {{ include "common.fullname" . }}-logs emptyDir: {} + - name: {{ include "common.fullname" . }}-cert-storage + persistentVolumeClaim: + claimName: {{ include "common.fullname" . }}-cert imagePullSecrets: - name: "{{ include "common.namespace" . }}-docker-registry-key" |