Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for volumePluginName (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top