Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for claimrefns (0.27 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	PersistentVolumeSourceApplyConfiguration `json:",inline"`
    	AccessModes                              []v1.PersistentVolumeAccessMode       `json:"accessModes,omitempty"`
    	ClaimRef                                 *ObjectReferenceApplyConfiguration    `json:"claimRef,omitempty"`
    	PersistentVolumeReclaimPolicy            *v1.PersistentVolumeReclaimPolicy     `json:"persistentVolumeReclaimPolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/expand/expand_controller_test.go

    		Spec: v1.PersistentVolumeSpec{
    			PersistentVolumeSource: v1.PersistentVolumeSource{},
    			ClaimRef: &v1.ObjectReference{
    				Namespace: "default",
    			},
    			Capacity: map[v1.ResourceName]resource.Quantity{
    				v1.ResourceStorage: resource.MustParse(size),
    			},
    		},
    	}
    	if pvcUID != "" {
    		pv.Spec.ClaimRef.UID = pvcUID
    	}
    
    	if matched, _ := regexp.MatchString(`csi`, pluginName); matched {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	// create dswp
    	mode := v1.PersistentVolumeFilesystem
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "dswp-test-volume-name",
    		},
    		Spec: v1.PersistentVolumeSpec{
    			ClaimRef:   &v1.ObjectReference{Namespace: "ns", Name: "file-bound"},
    			VolumeMode: &mode,
    		},
    	}
    	pvc := &v1.PersistentVolumeClaim{
    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "dswp-test-volume-name",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/testing/testing.go

    		v.ResourceVersion = ""
    		if v.Spec.ClaimRef != nil {
    			v.Spec.ClaimRef.ResourceVersion = ""
    		}
    		expectedMap[v.Name] = v
    	}
    	for _, v := range r.volumes {
    		// We must clone the volume because of golang race check - it was
    		// written by the controller without any locks on it.
    		v := v.DeepCopy()
    		v.ResourceVersion = ""
    		if v.Spec.ClaimRef != nil {
    			v.Spec.ClaimRef.ResourceVersion = ""
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

          namespace: namespaceValue
        user: userValue
      cinder:
        fsType: fsTypeValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        volumeID: volumeIDValue
      claimRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      csi:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			continue
    		}
    		if pv.Spec.ClaimRef == nil {
    			t.Errorf("PV %q ClaimRef is nil", b.pv.Name)
    			continue
    		}
    		if pv.Spec.ClaimRef.Name != b.pvc.Name {
    			t.Errorf("expected PV.ClaimRef.Name %q, got %q", b.pvc.Name, pv.Spec.ClaimRef.Name)
    		}
    		if pv.Spec.ClaimRef.Namespace != b.pvc.Namespace {
    			t.Errorf("expected PV.ClaimRef.Namespace %q, got %q", b.pvc.Namespace, pv.Spec.ClaimRef.Namespace)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	}
    
    	if pv.Spec.ClaimRef == nil {
    		return nil, "", fmt.Errorf(
    			"found PV object %s but it has a nil pv.Spec.ClaimRef indicating it is not yet bound to the claim",
    			name)
    	}
    
    	if pv.Spec.ClaimRef.UID != expectedClaimUID {
    		return nil, "", fmt.Errorf(
    			"found PV object %s but its pv.Spec.ClaimRef.UID %s does not point to claim.UID %s",
    			name,
    			pv.Spec.ClaimRef.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

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