From 989e3a65e4b3d814c591edea78c206ae872dc434 Mon Sep 17 00:00:00 2001 From: Kautilya Tripathi Date: Mon, 18 Nov 2024 09:00:54 +0530 Subject: [PATCH] charts: Fix storageClassName in pvc This fixes binding of storage class to pvc. Fixes: #2579 Signed-off-by: Kautilya Tripathi --- charts/headlamp/templates/pvc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/headlamp/templates/pvc.yaml b/charts/headlamp/templates/pvc.yaml index 86fc743946..c88b49d6d0 100644 --- a/charts/headlamp/templates/pvc.yaml +++ b/charts/headlamp/templates/pvc.yaml @@ -21,7 +21,7 @@ spec: {{- with .Values.persistentVolumeClaim.volumeMode }} volumeMode: {{ . }} {{- end }} - {{- with .Values.persistentVolumeClaim.storageClass }} + {{- with .Values.persistentVolumeClaim.storageClassName }} storageClassName: {{ . }} {{- end }} {{- with .Values.persistentVolumeClaim.selector }}