Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for UNHEALTHY (0.31 sec)

  1. pkg/kubelet/pleg/generic_test.go

    	testPleg := newTestGenericPLEG()
    
    	// pleg should initially be unhealthy
    	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")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    	devs := []pluginapi.Device{
    		{ID: "Device1", Health: pluginapi.Healthy},
    		{ID: "Device2", Health: pluginapi.Healthy},
    		{ID: "Device3", Health: pluginapi.Unhealthy},
    	}
    	callback := testManager.genericDeviceUpdateCallback
    
    	// Adds three devices for resource1, two healthy and one unhealthy.
    	// Expects capacity for resource1 to be 2.
    	resourceName1 := "domain1.com/resource1"
    	e1 := &endpointImpl{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    		"PILOT_SEND_UNHEALTHY_ENDPOINTS",
    		false,
    		"If enabled, Pilot will include unhealthy endpoints in EDS pushes and even if they are sent Envoy does not use them for load balancing."+
    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    				// new endpoint. Always send new healthy endpoints.
    				// Also send new unhealthy endpoints when SendUnhealthyEndpoints is enabled.
    				// This is OK since we disable panic threshold when SendUnhealthyEndpoints is enabled.
    				if nie.HealthStatus != UnHealthy || features.SendUnhealthyEndpoints.Load() {
    					needPush = true
    				}
    				newIstioEndpoints = append(newIstioEndpoints, nie)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/collectors/volume_stats.go

    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsHealthStatusAbnormalKey),
    		"Abnormal volume health status. The count is either 1 or 0. 1 indicates the volume is unhealthy, 0 indicates volume is healthy",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "")
    )
    
    type volumeStatsCollector struct {
    	metrics.BaseStableCollector
    
    	statsProvider serverstats.Provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. pkg/probe/exec/exec_test.go

    		// Ok - truncated output
    		{probe.Success, false, true, elevenKilobyte, tenKilobyte, nil},
    		// Run returns error
    		{probe.Unknown, true, true, "", "", fmt.Errorf("test error")},
    		// Unhealthy
    		{probe.Failure, false, true, "Fail", "", &fakeExitError{true, 1}},
    		// Timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. docs/metrics/v3.md

    | `minio_cluster_erasure_set_read_health`          | `gauge` | Health of the erasure set in a pool for read operations (1=healthy, 0=unhealthy)  | `pool_id,set_id` |
    | `minio_cluster_erasure_set_write_health`         | `gauge` | Health of the erasure set in a pool for write operations (1=healthy, 0=unhealthy) | `pool_id,set_id` |
    
    ### `/cluster/iam`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
Back to top