Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 805 for livez (0.1 sec)

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

    }
    
    // InstallLivezHandler registers handlers for liveness checking on the path
    // "/livez" to mux. *All handlers* for mux must be specified in
    // exactly one call to InstallHandler. Calling InstallHandler more
    // than once for the same mux will result in a panic.
    func InstallLivezHandler(mux mux, checks ...HealthChecker) {
    	InstallPathHandler(mux, "/livez", checks...)
    }
    
    // InstallPathHandler registers handlers for health checking on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    )
    
    var (
    	// health probes and metrics scraping are never rejected, we will continue
    	// serving these requests after shutdown delay duration elapses.
    	pathPrefixesExemptFromRetryAfter = []string{
    		"/readyz",
    		"/livez",
    		"/healthz",
    		"/metrics",
    	}
    )
    
    // isRequestExemptFunc returns true if the request should not be rejected,
    // with a Retry-After response, otherwise it returns false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/options/options_test.go

    					AllowCacheTTL:                10 * time.Second,
    					DenyCacheTTL:                 10 * time.Second,
    					RemoteKubeConfigFileOptional: true,
    					AlwaysAllowPaths:             []string{"/healthz", "/readyz", "/livez"}, // note: this does not match /healthz/ or /healthz/*
    					AlwaysAllowGroups:            []string{"system:masters"},
    				},
    				Logs: logs.NewOptions(),
    			},
    			expectedUsername: "config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    func TestMetrics(t *testing.T) {
    	mux := http.NewServeMux()
    	InstallHandler(mux)
    	InstallLivezHandler(mux)
    	InstallReadyzHandler(mux)
    	metrics.Register()
    	metrics.Reset()
    
    	paths := []string{"/healthz", "/livez", "/readyz"}
    	for _, path := range paths {
    		req, err := http.NewRequest("GET", fmt.Sprintf("http://example.com%s", path), nil)
    		if err != nil {
    			t.Errorf("%v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/manifests.go

    			ReadinessProbe:  staticpodutil.ReadinessProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/readyz", endpoint.BindPort, v1.URISchemeHTTPS),
    			StartupProbe:    staticpodutil.StartupProbe(staticpodutil.GetAPIServerProbeAddress(endpoint), "/livez", endpoint.BindPort, v1.URISchemeHTTPS, componentHealthCheckTimeout),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	// The json encoded string to pass app HTTP probe information from injector(istioctl or webhook).
    	// For example, ISTIO_KUBE_APP_PROBERS='{"/app-health/httpbin/livez":{"httpGet":{"path": "/hello", "port": 8080}}.
    	// indicates that httpbin container liveness prober port is 8080 and probing path is /hello.
    	// This environment variable should never be set manually.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       10 * 1024 * 1024,
    				MaxRequestBodyBytes:         10 * 1024 * 1024,
    				LivezGracePeriod:            -time.Second,
    			},
    			expectErr: "--livez-grace-period can not be a negative value",
    		},
    		{
    			name: "Test when MinimalShutdownDuration is negative value",
    			testOptions: &ServerRunOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		// This allows the kubelet to always get health and readiness without causing an authorization check.
    		// This field can be cleared by callers if they don't want this behavior.
    		AlwaysAllowPaths: []string{"/healthz", "/readyz", "/livez"},
    		// In an authorization call delegated to a kube-apiserver (the expected common-case), system:masters has full
    		// authority in a hard-coded authorizer.  This means that our default can reasonably be to skip an authorization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local_test.go

        - --trusted-ca-file=etcd/ca.crt
        image: /etcd:%s
        imagePullPolicy: IfNotPresent
        livenessProbe:
          failureThreshold: 8
          httpGet:
            host: 127.0.0.1
            path: /livez
            port: 2381
            scheme: HTTP
          initialDelaySeconds: 10
          periodSeconds: 10
          timeoutSeconds: 15
        name: etcd
        readinessProbe:
          failureThreshold: 3
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    			Subjects: groups(user.AllUnauthenticated, user.AllAuthenticated),
    			NonResourceRules: []flowcontrol.NonResourcePolicyRule{
    				nonResourceRule(
    					[]string{"get"},
    					[]string{"/healthz", "/readyz", "/livez"}),
    			},
    		},
    	)
    	SuggestedFlowSchemaSystemLeaderElection = newFlowSchema(
    		"system-leader-election", "leader-election", 100,
    		flowcontrol.FlowDistinguisherMethodByUserType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top