Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for VolumePlugins (0.23 sec)

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

    	testCases := map[string]struct {
    		volumePlugins  []volume.VolumePlugin
    		expectErr      bool
    		expectedErrMsg string
    	}{
    		"volumePlugin is nil": {
    			volumePlugins:  []volume.VolumePlugin{},
    			expectErr:      true,
    			expectedErrMsg: "MapVolume.FindMapperPluginBySpec failed",
    		},
    		"blockVolumePlugin is nil": {
    			volumePlugins:  volumetesting.NewFakeFileVolumePlugin(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. pkg/kubemark/hollow_kubelet.go

    		CAdvisorInterface:         cadvisorInterface,
    		Cloud:                     nil,
    		OSInterface:               &containertest.FakeOS{},
    		ContainerManager:          containerManager,
    		VolumePlugins:             volumePlugins(),
    		TLSOptions:                nil,
    		OOMAdjuster:               oom.NewFakeOOMAdjuster(),
    		Mounter:                   &mount.FakeMounter{},
    		Subpather:                 &subpath.FakeSubpath{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/go/printer/testdata/alignment.golden

    	EnableDebuggingHandlers:	s.EnableDebuggingHandlers,
    	DockerClient:			dockertools.ConnectToDockerOrDie(s.DockerEndpoint),
    	KubeClient:			client,
    	MasterServiceNamespace:		s.MasterServiceNamespace,
    	VolumePlugins:			ProbeVolumePlugins(),
    	NetworkPlugins:			ProbeNetworkPlugins(),
    	NetworkPluginName:		s.NetworkPluginName,
    	StreamingConnectionIdleTimeout:	s.StreamingConnectionIdleTimeout,
    	TLSOptions:			tlsOptions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  4. src/go/printer/testdata/alignment.input

        DockerClient:                   dockertools.ConnectToDockerOrDie(s.DockerEndpoint),
        KubeClient:                     client,
        MasterServiceNamespace:         s.MasterServiceNamespace,
        VolumePlugins:                  ProbeVolumePlugins(),
        NetworkPlugins:                 ProbeNetworkPlugins(),
        NetworkPluginName:              s.NetworkPluginName,
        StreamingConnectionIdleTimeout: s.StreamingConnectionIdleTimeout,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_base.go

    // ControllerParameters contains arguments for creation of a new
    // PersistentVolume controller.
    type ControllerParameters struct {
    	KubeClient                clientset.Interface
    	SyncPeriod                time.Duration
    	VolumePlugins             []vol.VolumePlugin
    	VolumeInformer            coreinformers.PersistentVolumeInformer
    	ClaimInformer             coreinformers.PersistentVolumeClaimInformer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/core.go

    		SyncPeriod:                controllerContext.ComponentConfig.PersistentVolumeBinderController.PVClaimBinderSyncPeriod.Duration,
    		VolumePlugins:             plugins,
    		VolumeInformer:            controllerContext.InformerFactory.Core().V1().PersistentVolumes(),
    		ClaimInformer:             controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/framework_test.go

    	}
    	params := ControllerParameters{
    		KubeClient:                kubeClient,
    		SyncPeriod:                5 * time.Second,
    		VolumePlugins:             []volume.VolumePlugin{},
    		VolumeInformer:            informerFactory.Core().V1().PersistentVolumes(),
    		ClaimInformer:             informerFactory.Core().V1().PersistentVolumeClaims(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    		HostUtil:            hu,
    		Mounter:             mounter,
    		Subpather:           subpather,
    		OOMAdjuster:         oom.NewOOMAdjuster(),
    		OSInterface:         kubecontainer.RealOS{},
    		VolumePlugins:       plugins,
    		DynamicPluginProber: GetDynamicPluginProber(s.VolumePluginDir, pluginRunner),
    		TLSOptions:          tlsOptions}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	ProbeManager              prober.Manager
    	Recorder                  record.EventRecorder
    	Subpather                 subpath.Interface
    	TracerProvider            trace.TracerProvider
    	VolumePlugins             []volume.VolumePlugin
    	DynamicPluginProber       volume.DynamicPluginProber
    	TLSOptions                *server.TLSOptions
    	RemoteRuntimeService      internalapi.RuntimeService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
Back to top