Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,229 for volume3 (0.12 sec)

  1. pkg/controller/volume/persistentvolume/binder_test.go

    			initialClaims:   newClaimArray("claim3-3", "uid3-3", "10Gi", "volume3-3", v1.ClaimPending, nil, volume.AnnBoundByController, volume.AnnBindCompleted),
    			expectedClaims:  newClaimArray("claim3-3", "uid3-3", "10Gi", "volume3-3", v1.ClaimBound, nil, volume.AnnBoundByController, volume.AnnBindCompleted),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/storage/persistentvolume/resize/admission_test.go

    			resource: api.SchemeGroupVersion.WithResource("persistentvolumeclaims"),
    			oldObj: &api.PersistentVolumeClaim{
    				Spec: api.PersistentVolumeClaimSpec{
    					VolumeName: "volume3",
    					Resources: api.VolumeResourceRequirements{
    						Requests: getResourceList("1Gi"),
    					},
    				},
    				Status: api.PersistentVolumeClaimStatus{
    					Capacity: getResourceList("1Gi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_test.go

    				DeprecatedServiceAccount: "sa1",
    				Volumes: []corev1.Volume{
    					{Name: "volume1", VolumeSource: corev1.VolumeSource{ConfigMap: &corev1.ConfigMapVolumeSource{LocalObjectReference: corev1.LocalObjectReference{Name: "cm1"}}}},
    					{Name: "volume2", VolumeSource: corev1.VolumeSource{ConfigMap: &corev1.ConfigMapVolumeSource{LocalObjectReference: corev1.LocalObjectReference{Name: "cm2"}}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go

    			UID:  "pod3uid",
    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: "volume3-name",
    					VolumeSource: v1.VolumeSource{
    						GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    							PDName: "fake-device3",
    						},
    					},
    				},
    			},
    		},
    	}
    
    	volume3Spec := &volume.Spec{Volume: &pod3.Spec.Volumes[0]}
    	pod3Name := util.GetUniquePodName(pod3)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    }
    
    // Populates data struct with a single node no volume.
    // Calls AddPod() with the same node and new pod/volume.
    // Verifies node/volume exists.
    // Calls AddPod() with the same node and volume different pod.
    // Verifies the same node/volume exists, and 1 volumes to attach.
    func Test_AddPod_Positive_NewPodNodeExistsVolumeExists(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// Volume. For Volumes that share a filesystem with the host (e.g.
    	// emptydir, hostpath), this is the available space on the underlying
    	// storage, and is shared with host processes and other Volumes.
    	Available *resource.Quantity
    
    	// InodesUsed represents the total inodes used by the Volume.
    	InodesUsed *resource.Quantity
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes.go

    type controlPlaneHostPathMounts struct {
    	// volumes is a nested map that forces a unique volumes. The outer map's
    	// keys are a string that should specify the target component to add the
    	// volume to. The values (inner map) of the outer map are maps with string
    	// keys and v1.Volume values. The inner map's key should specify the volume
    	// name.
    	volumes map[string]map[string]v1.Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/recycle_test.go

    				// Mark the volume as Available before the recycler starts
    				reactor.MarkVolumeAvailable("volume6-8")
    			}),
    		},
    		{
    			// recycle success - volume bound by user is recycled, while a new
    			// claim is created with another UID.
    			name:            "6-9 - prebound volume is recycled while the claim exists",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/user-volume.yaml.injected

            sidecar.istio.io/userVolume: '{"user-volume-1":{"persistentVolumeClaim":{"claimName":"pvc-claim"}},"user-volume-2":{"configMap":{"name":"configmap-volume","items":[{"key":"some-key","path":"/some-path"}]}}}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/volume.go

    	// podServiceAccountName is the service account name of the pod, if available.
    	podServiceAccountName string
    	// volName is the name of the pod's volume.
    	volName string
    	// the underlying plugin
    	plugin *flexVolumePlugin
    	// the metric plugin
    	volume.MetricsProvider
    }
    
    // volume.Volume interface
    
    func (f *flexVolume) GetPath() string {
    	name := f.driverName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top