Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for NewUnmounter (0.19 sec)

  1. pkg/kubelet/volume_host.go

    	if spec.Volume != nil {
    		spec.Volume.Name = wrapperVolumeName
    	}
    
    	plugin, err := kvh.kubelet.volumePluginMgr.FindPluginBySpec(&spec)
    	if err != nil {
    		return nil, err
    	}
    
    	return plugin.NewUnmounter(spec.Name(), podUID)
    }
    
    func (kvh *kubeletVolumeHost) GetMounter(pluginName string) mount.Interface {
    	return kvh.kubelet.mounter
    }
    
    func (kvh *kubeletVolumeHost) GetHostName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    	return f.Plugin.NewMounter(spec, pod, opts)
    }
    
    func (f *FakeBasicVolumePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return f.Plugin.NewUnmounter(volName, podUID)
    }
    
    func (f *FakeBasicVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return f.Plugin.RequiresRemount(spec)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/volume/downwardapi/downwardapi_test.go

    		plugin:     plugin,
    		pod:        pod,
    		mounter:    mounter,
    		volumePath: volumePath,
    		rootDir:    rootDir,
    	}
    }
    
    func (test *downwardAPITest) tearDown() {
    	unmounter, err := test.plugin.NewUnmounter(test.name, testPodUID)
    	if err != nil {
    		test.t.Errorf("Failed to make a new Unmounter: %v", err)
    	}
    	if unmounter == nil {
    		test.t.Fatalf("Got a nil Unmounter")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo_test.go

    		} else {
    			allErrs = append(allErrs,
    				fmt.Errorf("SetUp() failed: %v", err))
    		}
    	}
    
    	unmounter, err := plug.NewUnmounter("vol1", types.UID("poduid"))
    	if err != nil {
    		allErrs = append(allErrs,
    			fmt.Errorf("failed to make a new Unmounter: %w", err))
    		return allErrs
    	}
    	if unmounter == nil {
    		allErrs = append(allErrs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/volume/portworx/portworx.go

    		},
    		fsType:      fsType,
    		readOnly:    readOnly,
    		diskMounter: util.NewSafeFormatAndMountFromHost(plugin.GetPluginName(), plugin.host)}, nil
    }
    
    func (plugin *portworxVolumePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return plugin.newUnmounterInternal(volName, podUID, plugin.util, plugin.host.GetMounter(plugin.GetPluginName()))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    	plugin.pluginLock.Lock()
    	defer plugin.pluginLock.Unlock()
    	if spec == nil {
    		plugin.ErrorEncountered = true
    	}
    	return nil, nil
    }
    
    func (plugin *TestPlugin) NewUnmounter(name string, podUID types.UID) (volume.Unmounter, error) {
    	return nil, nil
    }
    
    func (plugin *TestPlugin) ConstructVolumeSpec(volumeName, mountPath string) (volume.ReconstructedVolume, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. pkg/volume/testing/volume_host.go

    	if spec.Volume != nil {
    		spec.Volume.Name = wrapperVolumeName
    	}
    	plug, err := f.pluginMgr.FindPluginBySpec(&spec)
    	if err != nil {
    		return nil, err
    	}
    	return plug.NewUnmounter(spec.Name(), podUID)
    }
    
    // Returns the hostname of the host kubelet is running on
    func (f *fakeVolumeHost) GetHostName() string {
    	return "fakeHostName"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. pkg/volume/hostpath/host_path.go

    		readOnly:      readOnly,
    		mounter:       plugin.host.GetMounter(plugin.GetPluginName()),
    		hu:            kvh.GetHostUtil(),
    		noTypeChecker: plugin.noTypeChecker,
    	}, nil
    }
    
    func (plugin *hostPathPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &hostPathUnmounter{&hostPath{
    		path: "",
    	}}, nil
    }
    
    // Recycle recycles/scrubs clean a HostPath volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. pkg/volume/fc/fc.go

    		return nil, fmt.Errorf("failed to get device path: %v", err)
    	}
    	mapper.MetricsProvider = volume.NewMetricsBlock(filepath.Join(blockPath, string(podUID)))
    
    	return mapper, nil
    }
    
    func (plugin *fcPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	// Inject real implementations here, test through the internal function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	// - pod: The enclosing pod
    	NewMounter(spec *Spec, podRef *v1.Pod, opts VolumeOptions) (Mounter, error)
    
    	// NewUnmounter creates a new volume.Unmounter from recoverable state.
    	// - name: The volume name, as per the v1.Volume spec.
    	// - podUID: The UID of the enclosing pod
    	NewUnmounter(name string, podUID types.UID) (Unmounter, error)
    
    	// ConstructVolumeSpec constructs a volume spec based on the given volume name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top