Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for Healthy (0.11 sec)

  1. pkg/istio-agent/xds_proxy_test.go

    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition("")
    
    	// simulate envoy send xds requests
    	sendDownstreamWithNode(t, downstream, node)
    
    	// after lds sent, the caching healthcheck will be resent
    	expectCondition(status.StatusTrue)
    
    	// Flip status back and forth, ensure we update
    	proxy.sendHealthCheckRequest(healthy)
    	expectCondition(status.StatusTrue)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // but not yet healthy can be evicted only if the guarded application is not
      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction_test.go

    			podName:             "t7",
    			expectedDeleteCount: 0,
    			podTerminating:      false,
    			podPhase:            api.PodRunning,
    			prc: &api.PodCondition{
    				Type:   api.PodReady,
    				Status: api.ConditionTrue,
    			},
    		},
    		{
    			name: "matching pdbs with disruptions allowed, pod running, pod healthy, healthy pod ours, deletes pod by honoring the PDB",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. pilot/test/xdstest/extract.go

    				addrString = fmt.Sprintf("%s;%s", internalAddr, destinationAddr)
    			}
    			if lb.HealthStatus == core.HealthStatus_HEALTHY {
    				healthy = append(healthy, addrString)
    			} else {
    				unhealthy = append(unhealthy, addrString)
    			}
    		}
    	}
    	return healthy, unhealthy
    }
    
    // ExtractEndpoints returns all endpoints in the load assignment (including unhealthy endpoints)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. pkg/kubelet/pleg/generic_test.go

    	pleg, _, clock := testPleg.pleg, testPleg.runtime, testPleg.clock
    	ok, _ := pleg.Healthy()
    	assert.False(t, ok, "pleg should be unhealthy")
    
    	// Advance the clock without any relisting.
    	clock.Step(time.Minute * 10)
    	ok, _ = pleg.Healthy()
    	assert.False(t, ok, "pleg should be unhealthy")
    
    	// Relist and than advance the time by 1 minute. pleg should be healthy
    	// because this is within the allowed limit.
    	pleg.Relist()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction.go

    	}
    
    	// At this point there was either no PDB or we succeeded in decrementing or
    	// the pod was unhealthy (unready) and we have enough healthy replicas
    
    	deleteOptions := originalDeleteOptions
    
    	// Set deleteOptions.Preconditions.ResourceVersion to ensure
    	// the pod hasn't been considered healthy (ready) since we calculated
    	if updateDeletionOptions {
    		// Take a copy so we can compare to client-provied Options later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    // - If all components are HEALTHY, overall status is HEALTHY.
    // - If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING.
    // - If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING.
    // - If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                // Execution is healthy when:
                // - There is no work queued. There may be work still being run by workers, assume those workers are healthy (of course this isn't always true but for now assume it is)
                // - There is work queued, and some workers are running ("running" means "not stopped and not waiting for more work"). Assume the workers that are running are healthy
    
                if (queues.nothingQueued()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        // Make sure this connection is healthy & eligible for new exchanges. If it's no longer needed
        // then we're on the hook to close it.
        val healthy = candidate.isHealthy(connectionUser.doExtensiveHealthChecks())
        var noNewExchangesEvent = false
        val toClose: Socket? =
          candidate.withLock {
            when {
              !healthy -> {
                noNewExchangesEvent = !candidate.noNewExchanges
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/healthcheck_test.go

    	// fake a temporary unhealthy proxy
    	proxyChecker.healthy = false
    	testHandlerWithHealth(hcs, nsn2, http.StatusServiceUnavailable, 0, false, t)
    	testHandlerWithHealth(hcs, nsn3, http.StatusServiceUnavailable, 7, false, t)
    	testHandlerWithHealth(hcs, nsn4, http.StatusServiceUnavailable, 6, false, t)
    
    	// fake a healthy proxy
    	proxyChecker.healthy = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top