remove BulkVolumeVerifier interface from volume

This commit is contained in:
carlory
2024-05-11 11:18:02 +08:00
parent 4f04dffe5b
commit 21baa25e1a
23 changed files with 8 additions and 277 deletions

View File

@@ -18,10 +18,11 @@ package hostpath
import (
"fmt"
"k8s.io/klog/v2"
"os"
"regexp"
"k8s.io/klog/v2"
"github.com/opencontainers/selinux/go-selinux"
v1 "k8s.io/api/core/v1"
@@ -107,10 +108,6 @@ func (plugin *hostPathPlugin) SupportsMountOption() bool {
return false
}
func (plugin *hostPathPlugin) SupportsBulkVolumeVerification() bool {
return false
}
func (plugin *hostPathPlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
return false, nil
}