Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expandController (0.16 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. 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