Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for unhealthy (0.16 sec)

  1. pkg/controller/statefulset/stateful_set_control.go

    	// find the first unhealthy Pod
    	for i := range replicas {
    		if !isHealthy(replicas[i]) {
    			unhealthy++
    			if firstUnhealthyPod == nil {
    				firstUnhealthyPod = replicas[i]
    			}
    		}
    	}
    
    	// or the first unhealthy condemned Pod (condemned are sorted in descending order for ease of use)
    	for i := len(condemned) - 1; i >= 0; i-- {
    		if !isHealthy(condemned[i]) {
    			unhealthy++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

    /**
     * A {@link DaemonExpirationStrategy} which monitors daemon health and expires the daemon
     * whenever unhealthy conditions are detected. Currently, this strategy monitors JVM memory
     * health by detecting GC thrashing and excessive heap or metaspace usage. In addition to
     * expiring the daemon, whenever unhealthy conditions are detected, this strategy will
     * print a warning log to the console informing the user of the issue and instructing them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/apis/policy/types.go

    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    	// if they encounter an unrecognized policy in this field.
    	//
    	// This field is beta-level. The eviction API uses this field when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. pilot/test/xdstest/extract.go

    			}
    			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)
    func ExtractEndpoints(cla *endpoint.ClusterLoadAssignment) []string {
    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/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)
  6. pkg/istio-agent/xds_proxy_test.go

    	// TODO: allow fake XDS to be "authenticated"
    	test.SetForTest(t, &features.ValidateWorkloadEntryIdentity, false)
    	healthy := &discovery.DiscoveryRequest{TypeUrl: v3.HealthInfoType}
    	unhealthy := &discovery.DiscoveryRequest{
    		TypeUrl: v3.HealthInfoType,
    		ErrorDetail: &google_rpc.Status{
    			Code:    500,
    			Message: "unhealthy",
    		},
    	}
    	node := model.NodeMetadata{
    		AutoRegisterGroup: "group",
    		Namespace:         "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/status/workloadentry.go

    	// If this annotation is present, a WorkloadEntry with the condition Healthy=False or Healthy not set
    	// should be treated as unhealthy and not sent to proxies
    	WorkloadEntryHealthCheckAnnotation = "proxy.istio.io/health-checks-enabled"
    
    	// ConditionHealthy defines a status field to declare if a WorkloadEntry is healthy or not
    	ConditionHealthy = "Healthy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 05:26:17 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/ratings/ratings.js

        // Kiali shows the last 10 or 30 minutes, so to show the error rate of 50%,
        // it will be required to run the service for 30 minutes, 15 minutes of each state (healthy/unhealthy)
        setInterval(function () {
            healthy = !healthy
            unavailable = !unavailable
        }, 900000);
    }
    
    /**
     * We default to using mongodb, if DB_TYPE is not set to mysql.
     */
    if (process.env.SERVICE_VERSION === 'v2') {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/proxier_health.go

    // definition the HTTP server defines, but ignoring the state of the Node.
    func (hs *ProxierHealthServer) IsHealthy() bool {
    	isHealthy, _ := hs.isHealthy()
    	return isHealthy
    }
    
    func (hs *ProxierHealthServer) isHealthy() (bool, time.Time) {
    	hs.lock.RLock()
    	defer hs.lock.RUnlock()
    
    	var lastUpdated time.Time
    	currentTime := hs.clock.Now()
    
    	for ipFamily, proxierLastUpdated := range hs.lastUpdatedMap {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. pkg/controller/deployment/rolling_test.go

    			expectedOldReplicas: 8,
    		},
    		{ // expect unhealthy replicas from old replica sets been cleaned up
    			deploymentReplicas:  10,
    			maxUnavailable:      intstr.FromInt32(2),
    			oldReplicas:         10,
    			newReplicas:         0,
    			readyPodsFromOldRS:  8,
    			readyPodsFromNewRS:  0,
    			scaleExpected:       true,
    			expectedOldReplicas: 8,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top