diff --git a/charts/platform/templates/deployments.yaml b/charts/platform/templates/deployments.yaml index 72d153e9..060e045a 100644 --- a/charts/platform/templates/deployments.yaml +++ b/charts/platform/templates/deployments.yaml @@ -70,6 +70,8 @@ spec: name: {{ include "platform.fullName" . }}-secrets key: clickhouseDSN {{- end }} + - name: CQAPI_LOCAL_AES_KEY_FILE + value: "/shared/encrypted_aes_key.bin" - name: CQAPI_LOCAL_JWT_PRIVATE_KEY valueFrom: secretKeyRef: @@ -98,10 +100,14 @@ spec: {{- with .Values.volumeMounts }} {{- toYaml . | nindent 12 }} {{- end }} + - name: shared + mountPath: /shared volumes: {{- with .Values.volumes }} {{- toYaml . | nindent 8 }} {{- end }} + - name: shared + emptyDir: {} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}