Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 241 for livez (0.04 sec)

  1. 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)
  2. cmd/kube-scheduler/app/server.go

    	})
    }
    
    // newHealthEndpointsAndMetricsHandler creates an API health server from the config, and will also
    // embed the metrics handler.
    // TODO: healthz check is deprecated, please use livez and readyz instead. Will be removed in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local.go

    				},
    			},
    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    			ReadinessProbe: staticpodutil.ReadinessProbe(probeHostname, "/readyz", probePort, probeScheme),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// always reported
    	DiscoveryAddresses discovery.Addresses
    	// The default set of healthz checks. There might be more added via AddHealthChecks dynamically.
    	HealthzChecks []healthz.HealthChecker
    	// The default set of livez checks. There might be more added via AddHealthChecks dynamically.
    	LivezChecks []healthz.HealthChecker
    	// The default set of readyz-only checks. There might be more added via AddReadyzChecks dynamically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. pkg/proxy/healthcheck/healthcheck_test.go

    	hs.SyncNode(makeNode(tweakDeleted()))
    	testHTTPHandler(hsTest, http.StatusOK, t)
    }
    
    type url string
    
    var (
    	healthzURL url = "/healthz"
    	livezURL   url = "/livez"
    )
    
    func testProxierHealthUpdater(hs *ProxierHealthServer, hsTest *serverTest, fakeClock *testingclock.FakeClock, t *testing.T) {
    	// Should return 200 "OK" by default.
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switch to using the new etcd endpoints introduced in 3.5.11 - /livez (for liveness probe) and /readyz (for readyness and startup probe). With this change it is no longer possible to deploy a custom etcd version older than 3.5.11 with kubeadm 1.31. If so, please upgrade. ([#124465](https://github.com/kubernetes/kube...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    			WebhookRetryBackoff:          apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			RemoteKubeConfigFileOptional: true,
    			AlwaysAllowPaths:             []string{"/healthz", "/readyz", "/livez"}, // note: this does not match /healthz/ or /healthz/*
    			AlwaysAllowGroups:            []string{"system:masters"},
    		},
    		Master:  "192.168.4.20",
    		Metrics: &metrics.Options{},
    		Logs:    logs.NewOptions(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    			// Check to make sure only input variables are live.
    			for i, n := range lv.vars {
    				if !liveout.Get(int32(i)) {
    					continue
    				}
    				if n.Class == ir.PPARAM {
    					continue // ok
    				}
    				base.FatalfAt(n.Pos(), "bad live variable at entry of %v: %L", lv.fn.Nname, n)
    			}
    
    			// Record live variables.
    			live := &lv.livevars[index]
    			live.Or(*live, liveout)
    		}
    
    		if lv.doClobber {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    !!! check
        The `prefix`, `tags`, `responses`, and `dependencies` parameters are (as in many other cases) just a feature from **FastAPI** to help you avoid code duplication.
    
    ### Import the dependencies
    
    This code lives in the module `app.routers.items`, the file `app/routers/items.py`.
    
    And we need to get the dependency function from the module `app.dependencies`, the file `app/dependencies.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. 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