Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PVCs (0.03 sec)

  1. pkg/scheduler/schedule_one_test.go

    	fts := feature.Features{}
    	tests := []struct {
    		name               string
    		registerPlugins    []tf.RegisterPluginFunc
    		extenders          []tf.FakeExtender
    		nodes              []string
    		pvcs               []v1.PersistentVolumeClaim
    		pod                *v1.Pod
    		pods               []*v1.Pod
    		wantNodes          sets.Set[string]
    		wantEvaluatedNodes *int32
    		wErr               error
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			newSize = updatedSize
    			// k8s doesn't have transactions, we can't guarantee that after updating PV - updating PVC will be
    			// successful, that is why all PVCs for which pvc.Spec.Size > pvc.Status.Size must be reprocessed
    			// until they reflect user requested size in pvc.Status.Size
    			_, updateErr := util.UpdatePVSize(pv, newSize, og.kubeClient)
    			if updateErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	om.podsIndexer.Update(pods[0])
    	if _, err := ssc.UpdateStatefulSet(context.TODO(), set, pods); err != nil {
    		t.Errorf("Error updating StatefulSet %s", err)
    	}
    	// invariants check if there any missing PVCs for the Pods
    	if err := invariants(set, om); err != nil {
    		t.Error(err)
    	}
    	_, err = om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top