Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for claimrefns (0.15 sec)

  1. pkg/api/v1/persistentvolume/util_test.go

    		"claimrefns/Spec.PersistentVolumeSource.FlexVolume.SecretRef",
    		"flexns/Spec.PersistentVolumeSource.FlexVolume.SecretRef",
    
    		"claimrefns/Spec.PersistentVolumeSource.RBD.SecretRef",
    		"rbdns/Spec.PersistentVolumeSource.RBD.SecretRef",
    
    		"claimrefns/Spec.PersistentVolumeSource.ScaleIO.SecretRef",
    		"scaleions/Spec.PersistentVolumeSource.ScaleIO.SecretRef",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. pkg/kubelet/container/helpers_test.go

    	var innerEventRecorder = &innerEventRecorder{
    		recorder: nil,
    	}
    
    	_, actual := innerEventRecorder.shouldRecordEvent(nil)
    	assert.Equal(t, false, actual)
    
    	var obj = &v1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"}
    
    	_, actual = innerEventRecorder.shouldRecordEvent(obj)
    	assert.Equal(t, true, actual)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/index_test.go

    	pv8.Spec.ClaimRef = nil
    	pvBadSize.Spec.ClaimRef = claimRef
    	volume, _ = index.findBestMatchForClaim(claim, false)
    	if volume.Name != pv1.Name {
    		t.Errorf("Expected %s but got volume %s instead", pv1.Name, volume.Name)
    	}
    
    	// pretend the volume without the right access mode is pre-bound to the claim. should get the exact match.
    	pvBadSize.Spec.ClaimRef = nil
    	pvBadMode.Spec.ClaimRef = claimRef
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/util/util_test.go

    						Partition: 0,
    						ReadOnly:  false,
    					},
    				},
    				ClaimRef: &migratedObjectReference,
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{Name: nonMigratedVolume},
    			Spec: v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					ScaleIO: &v1.ScaleIOPersistentVolumeSource{},
    				},
    				ClaimRef: &nonMigratedObjectReference,
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/util/util.go

    	}
    
    	if pv.Spec.ClaimRef == nil {
    		return nil, fmt.Errorf(
    			"found PV object %q 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 %q but its pv.Spec.ClaimRef.UID (%q) does not point to claim.UID (%q)",
    			name,
    			pv.Spec.ClaimRef.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	boundByController := metav1.HasAnnotation(volume.ObjectMeta, storagehelpers.AnnBoundByController)
    	claimName := ""
    	if volume.Spec.ClaimRef != nil {
    		claimName = fmt.Sprintf("%s/%s (uid: %s)", volume.Spec.ClaimRef.Namespace, volume.Spec.ClaimRef.Name, volume.Spec.ClaimRef.UID)
    	}
    	return fmt.Sprintf("phase: %s, bound to: %q, boundByController: %v", volume.Status.Phase, claimName, boundByController)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/controller/volume/expand/expand_controller.go

    	if err != nil {
    		logger.V(5).Info("Error getting Persistent Volume for PVC from informer", "pvcKey", key, "pvcUID", pvc.UID, "err", err)
    		return err
    	}
    
    	if pv.Spec.ClaimRef == nil || pvc.Namespace != pv.Spec.ClaimRef.Namespace || pvc.UID != pv.Spec.ClaimRef.UID {
    		err := fmt.Errorf("persistent Volume is not bound to PVC being updated : %s", key)
    		logger.V(4).Info("", "err", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top