diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-07-16 13:54:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-16 13:54:13 +0000 |
commit | 1c9ddaa4bf61bb3661db47b38377f641e2dc4003 (patch) | |
tree | 8d1c987e91ae94d9caabf68c2d581ac80fd029b2 /kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml | |
parent | c3f46b1361023eab2f7acd62256ee31322a337eb (diff) | |
parent | 5336a4ad074c54e392c8b0ec128ce4e450111c9c (diff) |
Merge "[AAF SMS] Override outdated certificates" into elalto
Diffstat (limited to 'kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml')
-rw-r--r-- | kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml b/kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml index ca35fdc55a..b8886e2332 100644 --- a/kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml +++ b/kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml @@ -80,6 +80,9 @@ spec: subPath: smsconfig.json - mountPath: /sms/auth name: {{ include "common.fullname" . }}-auth + - mountPath: /sms/certs + name: {{ include "common.fullname" . }}-certs + readOnly: true resources: {{ include "common.resources" . | indent 10 }} {{- if .Values.nodeSelector }} @@ -100,5 +103,8 @@ spec: - name: {{ include "common.fullname" . }}-auth persistentVolumeClaim: claimName: {{ include "common.fullname" . }} + - name: {{ include "common.fullname" . }}-certs + secret: + secretName: {{ include "common.fullname" . }}-certs imagePullSecrets: - name: "{{ include "common.namespace" . }}-docker-registry-key" |