Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expandController (0.24 sec)

  1. pkg/controller/volume/expand/expand_controller.go

    		klog.ErrorS(nil, "DeleteServiceAccountToken unsupported in expandController")
    	}
    }
    
    func (expc *expandController) GetNodeLabels() (map[string]string, error) {
    	return nil, fmt.Errorf("GetNodeLabels unsupported in expandController")
    }
    
    func (expc *expandController) GetNodeName() types.NodeName {
    	return ""
    }
    
    func (expc *expandController) GetEventRecorder() record.EventRecorder {
    	return expc.recorder
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/controller/volume/expand/expand_controller_test.go

    		if err != nil {
    			t.Fatalf("error creating expand controller : %v", err)
    		}
    
    		var expController *expandController
    		expController, _ = expc.(*expandController)
    		var expansionCalled bool
    		expController.operationGenerator = operationexecutor.NewFakeOGCounter(func() volumetypes.OperationContext {
    			expansionCalled = true
    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. cmd/kube-controller-manager/app/core.go

    	if err != nil {
    		return nil, true, fmt.Errorf("failed to probe volume plugins when starting volume expand controller: %v", err)
    	}
    	csiTranslator := csitrans.New()
    
    	expandController, expandControllerErr := expand.NewExpandController(
    		ctx,
    		controllerContext.ClientBuilder.ClientOrDie("expand-controller"),
    		controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    		plugins,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top