Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for volumeName (0.14 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	if volumetypes.IsOperationFinishedError(mountError) &&
    		actualStateOfWorld.GetDeviceMountState(volumeToMount.VolumeName) == DeviceMountUncertain {
    
    		if actualStateOfWorld.IsVolumeDeviceReconstructed(volumeToMount.VolumeName) {
    			klog.V(2).InfoS("MountVolume.markDeviceErrorState leaving volume uncertain", "volumeName", volumeToMount.VolumeName)
    			return
    		}
    
    		// Only devices which were uncertain can be marked as unmounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func SetVolumeLabel(rootPathName *uint16, volumeName *uint16) (err error) {
    	r1, _, e1 := syscall.Syscall(procSetVolumeLabelW.Addr(), 2, uintptr(unsafe.Pointer(rootPathName)), uintptr(unsafe.Pointer(volumeName)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetVolumeMountPoint(volumeMountPoint *uint16, volumeName *uint16) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    				InodesUsed: &logsUsed,
    			},
    		})
    	}
    
    	perLocalVolumeUsed := uint64(perLocalVolumeInodesUsed.Value())
    	for _, volumeName := range localVolumeNames(pod) {
    		result.VolumeStats = append(result.VolumeStats, statsapi.VolumeStats{
    			Name: volumeName,
    			FsStats: statsapi.FsStats{
    				InodesUsed: &perLocalVolumeUsed,
    			},
    		})
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	return nil
    }
    
    func waitForVolumeDetach(
    	volumeName v1.UniqueVolumeName,
    	volumeManager kubeletvolume.VolumeManager) error {
    	attachedVolumes := []v1.UniqueVolumeName{}
    	err := retryWithExponentialBackOff(
    		time.Duration(50*time.Millisecond),
    		func() (bool, error) {
    			// Verify volumes detached
    			volumeAttached := volumeManager.VolumeIsAttached(volumeName)
    			return !volumeAttached, nil
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test1",
    				},
    				Spec: api.PersistentVolumeClaimSpec{
    					VolumeName: "my-volume",
    					VolumeMode: &volumeMode,
    				},
    				Status: api.PersistentVolumeClaimStatus{
    					Phase:       api.ClaimBound,
    					AccessModes: []api.PersistentVolumeAccessMode{api.ReadOnlyMany},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	}
    
    	if obj.Spec.VolumeName != "" {
    		accessModes = helper.GetAccessModesAsString(obj.Status.AccessModes)
    		storage = obj.Status.Capacity[api.ResourceStorage]
    		capacity = storage.String()
    	}
    
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	row.Cells = append(row.Cells, obj.Name, string(phase), obj.Spec.VolumeName, capacity, accessModes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			pvcs: []v1.PersistentVolumeClaim{
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "existingPVC", UID: types.UID("existingPVC"), Namespace: v1.NamespaceDefault},
    					Spec:       v1.PersistentVolumeClaimSpec{VolumeName: "existingPV"},
    				},
    			},
    			pod:       st.MakePod().Name("ignore").UID("ignore").Namespace(v1.NamespaceDefault).PVC("existingPVC").Obj(),
    			wantNodes: sets.New("node1", "node2"),
    			name:      "existing PVC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials.  If not specified, default values will be attempted."
            },
            "volumeName": {
              "description": "VolumeName is the human-readable name of the StorageOS volume.  Volume names are only unique within a namespace.",
              "type": "string"
            },
            "volumeNamespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    				}
    			}
    			hostPath, cleanupAction, err = subpather.PrepareSafeSubpath(subpath.Subpath{
    				VolumeMountIndex: i,
    				Path:             hostPath,
    				VolumeName:       vol.InnerVolumeSpecName,
    				VolumePath:       volumePath,
    				PodDir:           podDir,
    				ContainerName:    container.Name,
    			})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top