Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PersistentVolumeClaim (0.73 sec)

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

    	// GetCSITranslator returns the CSI Translation Library
    	GetCSITranslator() InTreeToCSITranslator
    
    	GenerateExpandVolumeFunc(*v1.PersistentVolumeClaim, *v1.PersistentVolume) (volumetypes.GeneratedOperations, error)
    
    	GenerateExpandAndRecoverVolumeFunc(*v1.PersistentVolumeClaim, *v1.PersistentVolume, string) (volumetypes.GeneratedOperations, error)
    
    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. pkg/scheduler/schedule_one_test.go

    						"node1": framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "unknownPVC" not found`).WithPlugin("VolumeBinding"),
    						"node2": framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "unknownPVC" not found`).WithPlugin("VolumeBinding"),
    					},
    					PreFilterMsg:         `persistentvolumeclaim "unknownPVC" not found`,
    					UnschedulablePlugins: sets.New(volumebinding.Name),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PersistentVolumeClaim) DeepCopyInto(out *PersistentVolumeClaim) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeClaim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PersistentVolumeClaim) DeepCopyInto(out *PersistentVolumeClaim) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeClaim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    	volumeMode := api.PersistentVolumeFilesystem
    	myVacn := "my-vacn"
    	myScn := "my-scn"
    	tests := []struct {
    		pvc      api.PersistentVolumeClaim
    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test1",
    				},
    				Spec: api.PersistentVolumeClaimSpec{
    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/apis/apps/validation/validation_test.go

    	}
    }
    
    func tweakOrdinalsStart(s int32) statefulSetTweak {
    	return func(ss *apps.StatefulSet) {
    		ss.Spec.Ordinals = &apps.StatefulSetOrdinals{Start: s}
    	}
    }
    
    func tweakPVCTemplate(pvc ...api.PersistentVolumeClaim) statefulSetTweak {
    	return func(ss *apps.StatefulSet) {
    		ss.Spec.VolumeClaimTemplates = pvc
    	}
    }
    
    func tweakUpdateStrategyType(t apps.StatefulSetUpdateStrategyType) statefulSetTweak {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    func (om *fakeObjectManager) CreateClaim(claim *v1.PersistentVolumeClaim) error {
    	om.claimsIndexer.Update(claim)
    	return nil
    }
    
    func (om *fakeObjectManager) GetClaim(namespace, claimName string) (*v1.PersistentVolumeClaim, error) {
    	return om.claimsLister.PersistentVolumeClaims(namespace).Get(claimName)
    }
    
    func (om *fakeObjectManager) UpdateClaim(claim *v1.PersistentVolumeClaim) error {
    	// Validate ownerRefs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printPersistentVolumeClaim(obj *api.PersistentVolumeClaim, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	phase := obj.Status.Phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top