From 98286e575218ea95a2d9291b36b9bcbe8d48530c Mon Sep 17 00:00:00 2001 From: paulliwog <38052994+paulliwog@users.noreply.github.com> Date: Fri, 12 Jul 2024 11:51:08 -0700 Subject: [PATCH] [ISSUE-27] Fix EFS Storage Class Mismatch with Name Prefix This change fixes a template issue when using AWS EFS as the storage for self-hosted deployments --- charts/deepgram-self-hosted/templates/volumes/aws/efs.pvc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/deepgram-self-hosted/templates/volumes/aws/efs.pvc.yaml b/charts/deepgram-self-hosted/templates/volumes/aws/efs.pvc.yaml index e934d1f..527c110 100644 --- a/charts/deepgram-self-hosted/templates/volumes/aws/efs.pvc.yaml +++ b/charts/deepgram-self-hosted/templates/volumes/aws/efs.pvc.yaml @@ -8,7 +8,7 @@ metadata: spec: accessModes: - ReadWriteMany - storageClassName: aws-efs-sc + storageClassName: {{ .Values.engine.modelManager.volumes.aws.efs.namePrefix }}-aws-efs-sc resources: requests: storage: 5Gi