From 260426bf445935d760cc09679637c19b1017e544 Mon Sep 17 00:00:00 2001 From: Jonathan Dobson Date: Tue, 27 Apr 2021 17:52:40 -0600 Subject: [PATCH] clarify deprecation comment --- pkg/volume/csi/csi_mounter.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkg/volume/csi/csi_mounter.go b/pkg/volume/csi/csi_mounter.go index 4c131695d4b..7e98dea45ca 100644 --- a/pkg/volume/csi/csi_mounter.go +++ b/pkg/volume/csi/csi_mounter.go @@ -365,9 +365,11 @@ func (c *csiMountMgr) TearDownAt(dir string) error { return errors.New(log("mounter.TearDownAt failed: %v", err)) } - // Deprecation: Removal of this mount directory MUST be done by - // the CSI plugin according to the spec. This will no longer be done - // directly as part of TearDown by the kubelet in the future. + // Deprecation: Removal of target_path provided in the NodePublish RPC call + // (in this case location `dir`) MUST be done by the CSI plugin according + // to the spec. This will no longer be done directly as part of TearDown + // by the kubelet in the future. Kubelet will only be responsible for + // removal of json data files it creates and parent directories. if err := removeMountDir(c.plugin, dir); err != nil { return errors.New(log("mounter.TearDownAt failed to clean mount dir [%s]: %v", dir, err)) }