Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HandleGetAction (0.37 sec)

  1. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    		return nil, errors.Wrap(err, "failed to create API client configuration from kubeconfig")
    	}
    	return NewClientBackedDryRunGetter(clientConfig)
    }
    
    // HandleGetAction handles GET actions to the dryrun clientset this interface supports
    func (clg *ClientBackedDryRunGetter) HandleGetAction(action core.GetAction) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    	return &InitDryRunGetter{
    		controlPlaneName: controlPlaneName,
    		serviceSubnet:    serviceSubnet,
    	}
    }
    
    // HandleGetAction handles GET actions to the dryrun clientset this interface supports
    func (idr *InitDryRunGetter) HandleGetAction(action core.GetAction) (bool, runtime.Object, error) {
    	funcs := []func(core.GetAction) (bool, runtime.Object, error){
    		idr.handleKubernetesService,
    		idr.handleGetNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    )
    
    // DryRunGetter is an interface that must be supplied to the NewDryRunClient function in order to construct a fully functional fake dryrun clientset
    type DryRunGetter interface {
    	HandleGetAction(core.GetAction) (bool, runtime.Object, error)
    	HandleListAction(core.ListAction) (bool, runtime.Object, error)
    }
    
    // MarshalFunc takes care of converting any object to a byte array for displaying the object to the user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
Back to top