From e53875c15b0c1bae14b0040fecc627e7f27207eb Mon Sep 17 00:00:00 2001 From: Patrick Zhao Date: Wed, 17 Sep 2025 16:02:14 +0800 Subject: [PATCH] fix nfs properties subpath tag Signed-off-by: Patrick Zhao --- pkg/types/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/types/cache.go b/pkg/types/cache.go index 829ef893a0..8731ae7567 100644 --- a/pkg/types/cache.go +++ b/pkg/types/cache.go @@ -49,7 +49,7 @@ type NFSProperties struct { StorageSizeInGiB int64 `json:"storage_size_in_gib" bson:"storage_size_in_gib" yaml:"storage_size_in_gib"` PVC string `json:"pvc" bson:"pvc" yaml:"pvc"` AccessMode corev1.PersistentVolumeAccessMode `json:"access_mode" bson:"access_mode" yaml:"access_mode"` - Subpath string `json:"sub_path" bson:"sub_path" yaml:"sub_path"` + Subpath string `json:"subpath" bson:"subpath" yaml:"subpath"` MountPath string `json:"mount_path" bson:"mount_path" yaml:"mount_path"` IsTemporary bool `json:"is_temporary" bson:"is_temporary" yaml:"is_temporary"` }