Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for volumePluginName (0.2 sec)

  1. pkg/kubelet/kubelet_getters.go

    		volumePluginName := volumePluginDir.Name()
    		volumePluginPath := filepath.Join(podVolDir, volumePluginName)
    		volumeDirs, err := utilpath.ReadDirNoStat(volumePluginPath)
    		if err != nil {
    			return volumes, fmt.Errorf("could not read directory %s: %v", volumePluginPath, err)
    		}
    		unescapePluginName := utilstrings.UnescapeQualifiedName(volumePluginName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    				err := handleSELinuxMetricError(
    					fullErr,
    					supported,
    					seLinuxVolumeContextMismatchWarnings.WithLabelValues(volumePluginName, accessMode),
    					seLinuxVolumeContextMismatchErrors.WithLabelValues(volumePluginName, accessMode))
    				if err != nil {
    					return "", err
    				}
    			}
    		}
    	}
    
    	// Create new podToMount object. If it already exists, it is refreshed with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. pkg/volume/util/util.go

    	if err != nil {
    		return secret, err
    	}
    	if secrets.Type != v1.SecretType(volumePluginName) {
    		return secret, fmt.Errorf("cannot get secret of type %s", volumePluginName)
    	}
    	for name, data := range secrets.Data {
    		secret[name] = string(data)
    	}
    	return secret, nil
    }
    
    // GetClassForVolume locates storage class by persistent volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to instantiate mounter for volume: %s using plugin: %s with a root cause: %v", spec.Name(), plugin.GetPluginName(), err)
    	}
    	klog.V(10).InfoS("Using volume plugin for mount", "volumePluginName", plugin.GetPluginName(), "volumeName", spec.Name())
    	return physicalMounter, nil
    }
    
    // removeOrphanedPodVolumeDirs attempts to remove the pod volumes directory and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    	actualStateOfWorld ActualStateOfWorldMounterUpdater,
    	isRemount bool) volumetypes.GeneratedOperations {
    
    	volumePluginName := unknownVolumePlugin
    	volumePlugin, err :=
    		og.volumePluginMgr.FindPluginBySpec(volumeToMount.VolumeSpec)
    	if err == nil && volumePlugin != nil {
    		volumePluginName = volumePlugin.GetPluginName()
    	}
    
    	mountVolumeFunc := func() volumetypes.OperationContext {
    		// Get mounter plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top