Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InstallAPIs (0.52 sec)

  1. pkg/controlplane/apiserver/apis.go

    		eventsrest.RESTStorageProvider{TTL: c.EventTTL},
    	}, nil
    }
    
    // InstallAPIs will install the APIs for the restStorageProviders if they are enabled.
    func (s *Server) InstallAPIs(restStorageProviders ...RESTStorageProvider) error {
    	nonLegacy := []*genericapiserver.APIGroupInfo{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/handler.go

    type APIServerHandler struct {
    	// FullHandlerChain is the one that is eventually served with.  It should include the full filter
    	// chain and then call the Director.
    	FullHandlerChain http.Handler
    	// The registered APIs.  InstallAPIs uses this.  Other servers probably shouldn't access this directly.
    	GoRestfulContainer *restful.Container
    	// NonGoRestfulMux is the final HTTP handler in the chain.
    	// It comes after all filters and the API handling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    	if err != nil {
    		return nil, err
    	}
    
    	restStorageProviders, err := c.StorageProviders(client.Discovery())
    	if err != nil {
    		return nil, err
    	}
    
    	if err := s.ControlPlane.InstallAPIs(restStorageProviders...); err != nil {
    		return nil, err
    	}
    
    	_, publicServicePort, err := c.ControlPlane.Generic.SecureServing.HostPort()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top