Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 189 for pvcs (0.08 sec)

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

    	expectedEvents []string
    	// Errors to produce on matching action
    	errors []pvtesting.ReactorError
    	// Function to call as the test.
    	test testCall
    }
    
    // annSkipLocalStore can be used to mark initial PVs or PVCs that are meant to be added only
    // to the fake apiserver (i.e. available via Get) but not to the local store (i.e. the controller
    // won't have them in its cache).
    const annSkipLocalStore = "pv-testing-skip-local-store"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - The scheduler now retries Pods, which are failed by `nodevolumelimits` due to not found PVCs, only when new PVCs are added. ([#121952](https://github.com/kubernetes/kubernetes/pull/121952), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. pkg/scheduler/util/assumecache/assume_cache_test.go

    		expectErr error
    	}{
    		"success-same-version": {
    			oldObj: makeObj("pvc1", "5", ""),
    			newObj: makeObj("pvc1", "5", ""),
    		},
    		"success-new-higher-version": {
    			oldObj: makeObj("pvc1", "5", ""),
    			newObj: makeObj("pvc1", "6", ""),
    		},
    		"fail-old-not-found": {
    			oldObj:    makeObj("pvc2", "5", ""),
    			newObj:    makeObj("pvc1", "5", ""),
    			expectErr: ErrNotFound,
    		},
    		"fail-new-lower-version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	pvc := makeClaim(pvcName, "1", pvcNamespace)
    	assumecache.AddTestObject(cache.AssumeCache, pvc)
    	if err := verifyPVC(cache, getPVCName(pvc), pvc); err != nil {
    		t.Fatalf("failed to get PVC: %v", err)
    	}
    
    	// Assume PVC
    	newPVC := pvc.DeepCopy()
    	newPVC.Annotations[volume.AnnSelectedNode] = "test-node"
    	if err := cache.Assume(newPVC); err != nil {
    		t.Fatalf("failed to assume PVC: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/volume/util/resize_util_test.go

    			pvc := tc.pvc
    			kubeClient := fake.NewSimpleClientset(pvc)
    
    			var err error
    
    			pvc, err = tc.testFunc(pvc, kubeClient, resource.MustParse("10Gi"))
    			if err != nil {
    				t.Errorf("Expected no error but got %v", err)
    			}
    			realStatus := pvc.Status.AllocatedResourceStatuses
    			expectedStatus := tc.expectedPVC.Status.AllocatedResourceStatuses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    			resizeResponse.err = msg
    			return resizeResponse
    		}
    		resizeResponse.pvc = pvc
    		successMsg := fmt.Sprintf("ExpandVolume succeeded for volume %s", util.GetPersistentVolumeClaimQualifiedName(pvc))
    		og.recorder.Eventf(pvc, v1.EventTypeNormal, kevents.VolumeResizeSuccess, successMsg)
    	} else {
    		pvc, err = og.markForPendingNodeExpansion(pvc, pv)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/node_expander.go

    	ne.recorder.Eventf(ne.pvc, v1.EventTypeNormal, kevents.FileSystemResizeSuccess, simpleMsg)
    	klog.InfoS(detailedMsg, "pod", klog.KObj(ne.vmt.Pod))
    
    	// no need to update PVC object if we already updated it
    	if ne.pvcAlreadyUpdated {
    		return true, nil, testResponseData{true, true}
    	}
    
    	// File system resize succeeded, now update the PVC's Capacity to match the PV's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. .idea/vcs.xml

            </IssueNavigationLink>
          </list>
        </option>
      </component>
      <component name="VcsDirectoryMappings">
        <mapping directory="" vcs="Git" />
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 23 14:29:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/vcs.go

    	if cmd == nil {
    		return nil, fmt.Errorf("unknown vcs: %s %s", vcs, remote)
    	}
    	if !strings.Contains(remote, "://") {
    		return nil, fmt.Errorf("invalid vcs remote: %s %s", vcs, remote)
    	}
    
    	r := &vcsRepo{remote: remote, cmd: cmd}
    	var err error
    	r.dir, r.mu.Path, err = WorkDir(ctx, vcsWorkDirType+vcs, r.remote)
    	if err != nil {
    		return nil, err
    	}
    
    	if cmd.init == nil {
    		return r, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    	}
    	var vcs *Cmd
    	if mmi.VCS == "mod" {
    		vcs = vcsMod
    	} else {
    		vcs = vcsByCmd(mmi.VCS)
    		if vcs == nil {
    			return nil, fmt.Errorf("%s: unknown vcs %q", resp.URL, mmi.VCS)
    		}
    	}
    
    	if err := checkGOVCS(vcs, mmi.Prefix); err != nil {
    		return nil, err
    	}
    
    	repoURL, ok := interceptVCSTest(mmi.RepoRoot, vcs, security)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top