Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for UNHEALTHY (0.16 sec)

  1. pkg/registry/core/pod/storage/eviction_test.go

    			prc: &api.PodCondition{
    				Type:   api.PodReady,
    				Status: api.ConditionTrue,
    			},
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod running, pod unhealthy, unhealthy pod ours",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K 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. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/cluster.go

    			// DRAINING endpoints to be kept as 'UNHEALTHY' coarse status in envoy.
    			// Will not be used for normal traffic, only when explicit override.
    			if service.Attributes.Labels[features.PersistentSessionLabel] != "" {
    				// Default is UNKNOWN, HEALTHY, DEGRADED. Without this change, Envoy will drop endpoints with any other
    				// status received in EDS. With this setting, the DRAINING and UNHEALTHY endpoints are kept - both marked
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    						// Hence the symlink may be deemed unhealthy during that period.
    						// See https://github.com/kubernetes/kubernetes/issues/52172
    						//
    						// We only remove unhealthy symlink for dead containers
    						klog.V(5).InfoS("Container is still running, not removing symlink", "containerID", containerID, "path", logSymlink)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

      string region = 1;
      string zone = 2;
      string subzone = 3;
    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    // PorList represents the ports for a service
    message PortList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Services:              constructServicesFromWorkloadEntry(&wle.Spec, services),
    			AuthorizationPolicies: policies,
    			Status:                workloadapi.WorkloadStatus_HEALTHY, // TODO: WE can be unhealthy
    			Waypoint:              waypointAddress,
    			TrustDomain:           pickTrustDomain(meshCfg),
    			Locality:              getWorkloadEntryLocality(&wle.Spec),
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    	WorkloadStatus_HEALTHY WorkloadStatus = 0
    	// Workload is unhealthy and NOT ready to serve traffic.
    	WorkloadStatus_UNHEALTHY WorkloadStatus = 1
    )
    
    // Enum value maps for WorkloadStatus.
    var (
    	WorkloadStatus_name = map[int32]string{
    		0: "HEALTHY",
    		1: "UNHEALTHY",
    	}
    	WorkloadStatus_value = map[string]int32{
    		"HEALTHY":   0,
    		"UNHEALTHY": 1,
    	}
    )
    
    func (x WorkloadStatus) Enum() *WorkloadStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top