diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-06-05 15:40:52 +0200 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-06-08 08:26:08 +0200 |
commit | 5336a4ad074c54e392c8b0ec128ce4e450111c9c (patch) | |
tree | 40568209e36bf61e00b4357fd179e465e7ec935a /kubernetes/aaf/charts/aaf-sms/templates/deployment.yaml | |
parent | 3c2395cd1dede2bed7bd385d637f989eb6bfb15b (diff) |
[AAF SMS] Override outdated certificates
Certificates in AAF SMS are outdated
Replacing by new ones
Issue-ID: AAF-1159
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I47c459e6f9ca002bf7ed946a7de80426b04e959a
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" |