Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LivezChecks (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			healthChecksAreEqual(t, tc.wantHealthzChecks, serverConfig.HealthzChecks, "healthz")
    			healthChecksAreEqual(t, tc.wantReadyzChecks, serverConfig.ReadyzChecks, "readyz")
    			healthChecksAreEqual(t, tc.wantLivezChecks, serverConfig.LivezChecks, "livez")
    		})
    	}
    }
    
    func TestReadinessCheck(t *testing.T) {
    	testCases := []struct {
    		name              string
    		wantReadyzChecks  []string
    		wantHealthzChecks []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    func (c *Config) AddHealthChecks(healthChecks ...healthz.HealthChecker) {
    	c.HealthzChecks = append(c.HealthzChecks, healthChecks...)
    	c.LivezChecks = append(c.LivezChecks, healthChecks...)
    	c.ReadyzChecks = append(c.ReadyzChecks, healthChecks...)
    }
    
    // AddReadyzChecks adds a health check to our config to be exposed by the readyz endpoint
    // of our configured apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - Promoted plugin subcommand resolution feature to `beta`. ([#120663](https://github.com/kubernetes/kubernetes/pull/120663), [@ardaguclu](https://github.com/ardaguclu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top