Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installLivez (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    		// note: installHandlerWithHealthyFunc guarantees that this is called only once
    		s.lifecycleSignals.HasBeenReady.Signal()
    	})
    }
    
    // installLivez creates the livez endpoint for this server.
    func (s *GenericAPIServer) installLivez() {
    	s.livezRegistry.installHandler(s.Handler.NonGoRestfulMux)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		s.OpenAPIV3VersionedService = routes.OpenAPI{
    			V3Config: s.openAPIV3Config,
    		}.InstallV3(s.Handler.GoRestfulContainer, s.Handler.NonGoRestfulMux)
    	}
    
    	s.installHealthz()
    	s.installLivez()
    
    	// as soon as shutdown is initiated, readiness should start failing
    	readinessStopCh := s.lifecycleSignals.ShutdownInitiated.Signaled()
    	err := s.addReadyzShutdownCheck(readinessStopCh)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top