From d4c189d52b58be1098524968d4c5dbe4d642ed6b Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Wed, 5 Jun 2019 17:53:04 +0200 Subject: [PATCH] csi: Fix socket extension comment The CSI socket has used a sock extension since 179d8e108e8. This removes the stale TODO for updating it. --- pkg/volume/csi/csi_plugin.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/volume/csi/csi_plugin.go b/pkg/volume/csi/csi_plugin.go index 08340027fe1..bd37bc15883 100644 --- a/pkg/volume/csi/csi_plugin.go +++ b/pkg/volume/csi/csi_plugin.go @@ -49,11 +49,6 @@ const ( // CSIPluginName is the name of the in-tree CSI Plugin CSIPluginName = "kubernetes.io/csi" - // TODO (vladimirvivien) implement a more dynamic way to discover - // the unix domain socket path for each installed csi driver. - // TODO (vladimirvivien) would be nice to name socket with a .sock extension - // for consistency. - csiAddrTemplate = "/var/lib/kubelet/plugins/%v/csi.sock" csiTimeout = 2 * time.Minute volNameSep = "^" volDataFileName = "vol_data.json"