Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 433 for pdName (0.15 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml

              namespace: namespaceValue
          flocker:
            datasetName: datasetNameValue
            datasetUUID: datasetUUIDValue
          gcePersistentDisk:
            fsType: fsTypeValue
            partition: 3
            pdName: pdNameValue
            readOnly: true
          glusterfs:
            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
            path: pathValue
            readOnly: true
          hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	volState := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "foo",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "bar",
    			},
    		},
    	}
    	volWithNoRestriction := v1.Volume{
    		Name:         "volume with no restriction",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    		if volume.GCEPersistentDisk != nil && existingVolume.GCEPersistentDisk != nil {
    			disk, existingDisk := volume.GCEPersistentDisk, existingVolume.GCEPersistentDisk
    			if disk.PDName == existingDisk.PDName && !(disk.ReadOnly && existingDisk.ReadOnly) {
    				return true
    			}
    		}
    
    		if volume.AWSElasticBlockStore != nil && existingVolume.AWSElasticBlockStore != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes_test.go

    	err := kubelet.volumeManager.WaitForAttachAndMount(context.Background(), pod)
    	assert.NoError(t, err)
    
    	podName := util.GetUniquePodName(pod)
    
    	volumesToReturn, volumeExsit := kubelet.ListVolumesForPod(types.UID(podName))
    	assert.True(t, volumeExsit, "expected to find volumes for pod %q", podName)
    
    	outerVolumeSpecName1 := "vol1"
    	assert.NotNil(t, volumesToReturn[outerVolumeSpecName1], "key %s", outerVolumeSpecName1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	FilterVolume: func(vol *v1.Volume) (string, bool) {
    		if vol.GCEPersistentDisk != nil {
    			return vol.GCEPersistentDisk.PDName, true
    		}
    		return "", false
    	},
    
    	FilterPersistentVolume: func(pv *v1.PersistentVolume) (string, bool) {
    		if pv.Spec.GCEPersistentDisk != nil {
    			return pv.Spec.GCEPersistentDisk.PDName, true
    		}
    		return "", false
    	},
    
    	MatchProvisioner: func(sc *storage.StorageClass) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    	// Create pod spec to test against
    	podVolumes = []k8sv1.Volume{
    		{
    			Name: vol0,
    			VolumeSource: k8sv1.VolumeSource{
    				GCEPersistentDisk: &k8sv1.GCEPersistentDiskVolumeSource{
    					PDName: "fake-device1",
    				},
    			},
    		},
    		{
    			Name: vol1,
    			VolumeSource: k8sv1.VolumeSource{
    				PersistentVolumeClaim: &k8sv1.PersistentVolumeClaimVolumeSource{
    					ClaimName: pvcClaimName0,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    		volumeName = spec.Volume.GCEPersistentDisk.PDName
    	} else if spec.Volume != nil && spec.Volume.RBD != nil {
    		volumeName = spec.Volume.RBD.RBDImage
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.GCEPersistentDisk != nil {
    		volumeName = spec.PersistentVolume.Spec.GCEPersistentDisk.PDName
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.RBD != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor.go

    	// IsOperationPending returns true if an operation for the given volumeName
    	// and one of podName or nodeName is pending, otherwise it returns false
    	IsOperationPending(volumeName v1.UniqueVolumeName, podName volumetypes.UniquePodName, nodeName types.NodeName) bool
    	// IsOperationSafeToRetry returns false if an operation for the given volumeName
    	// and one of podName or nodeName is pending or in exponential backoff, otherwise it returns true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
Back to top