Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pluginwatcher (0.22 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	registerapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/operationexecutor"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher"
    )
    
    const (
    	// reconcilerLoopSleepDuration is the amount of time the reconciler loop
    	// waits between successive executions
    	reconcilerLoopSleepDuration time.Duration = 1 * time.Nanosecond
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    	p := &csiPlugin{
    		host: nil,
    	}
    	return []volume.VolumePlugin{p}
    }
    
    // volume.VolumePlugin methods
    var _ volume.VolumePlugin = &csiPlugin{}
    
    // RegistrationHandler is the handler which is fed to the pluginwatcher API.
    type RegistrationHandler struct {
    }
    
    // TODO (verult) consider using a struct instead of global variables
    // csiDrivers map keep track of all registered CSI drivers on the node and their
    // corresponding sockets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_getters.go

    }
    
    // getPluginsRegistrationDir returns the full path to the directory under which
    // plugins socket should be placed to be registered.
    // More information is available about plugin registration in the pluginwatcher
    // module
    func (kl *Kubelet) getPluginsRegistrationDir() string {
    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletPluginsRegistrationDirName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. hack/update-codegen.sh

            "staging/src/k8s.io/kubelet/pkg/apis/dra"
    
            "staging/src/k8s.io/kubelet/pkg/apis/pluginregistration"
            "pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis"
        )
    
        kube::log::status "Generating protobuf bindings for ${#apis[@]} targets"
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "DBG: generating protobuf bindings for:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top