Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AddLivezChecks (0.09 sec)

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

    func (s *GenericAPIServer) AddReadyzChecks(checks ...healthz.HealthChecker) error {
    	return s.readyzRegistry.addHealthChecks(checks...)
    }
    
    // AddLivezChecks allows you to add a HealthCheck to livez.
    func (s *GenericAPIServer) AddLivezChecks(delay time.Duration, checks ...healthz.HealthChecker) error {
    	return s.livezRegistry.addDelayedHealthChecks(delay, checks...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top