Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for unhealthy (1.48 sec)

  1. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Float32Var(&o.SecondaryNodeEvictionRate, "secondary-node-eviction-rate", 0.01, "Number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy (see --unhealthy-zone-threshold for definition of healthy/unhealthy). Zone refers to entire cluster in non-multizone clusters....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            given:
            Logger logger = Mock(Logger)
            DaemonHealthStats stats = Mock(DaemonHealthStats)
            stats.getNonHeapStats() >> belowThreshold
            def underTest = new HealthExpirationStrategy(stats, strategy, logger)
    
            // If there is no unhealthy condition, we expect no logging.
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cluster-erasure-set.go

    		poolIDL, setIDL)
    	erasureSetReadHealthMD = NewGaugeMD(erasureSetReadHealth,
    		"Health of the erasure set in a pool for read operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    	erasureSetWriteHealthMD = NewGaugeMD(erasureSetWriteHealth,
    		"Health of the erasure set in a pool for write operations (1=healthy, 0=unhealthy)",
    		poolIDL, setIDL)
    )
    
    func b2f(v bool) float64 {
    	if v {
    		return 1
    	}
    	return 0
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/controller/deployment/rolling.go

    		return false, nil
    	}
    
    	// Clean up unhealthy replicas first, otherwise unhealthy replicas will block deployment
    	// and cause timeout. See https://github.com/kubernetes/kubernetes/issues/16737
    	oldRSs, cleanupCount, err := dc.cleanupUnhealthyReplicas(ctx, oldRSs, deployment, maxScaledDown)
    	if err != nil {
    		return false, nil
    	}
    	logger.V(4).Info("Cleaned up unhealthy replicas from old RSes", "count", cleanupCount)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    			validateEndpoints := func(expectPush bool, healthy []string, unhealthy []string) {
    				t.Helper()
    				// Normalize lists to make comparison easier
    				if healthy == nil {
    					healthy = []string{}
    				}
    				if unhealthy == nil {
    					unhealthy = []string{}
    				}
    				sort.Strings(healthy)
    				sort.Strings(unhealthy)
    				if expectPush {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. samples/bookinfo/src/docker-bake.hcl

        args = {
          service_version = "v-unavailable"
        }
        source = "ratings"
      },
      {
        name = "examples-bookinfo-ratings-v-unhealthy"
        args = {
          service_version = "v-unhealthy"
        }
        source = "ratings"
      },
    
      // mysql
      {
        name   = "examples-bookinfo-mysqldb"
        source = "mysql"
      },
    
      // mongo
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top