Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for UNHEALTHY (0.17 sec)

  1. 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 {
    					upd, err := adscon.Wait(5*time.Second, v3.EndpointType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    		if !isHealthy(condemned[i]) {
    			unhealthy++
    			if firstUnhealthyPod == nil {
    				firstUnhealthyPod = condemned[i]
    			}
    		}
    	}
    
    	if unhealthy > 0 {
    		logger.V(4).Info("StatefulSet has unhealthy Pods", "statefulSet", klog.KObj(set), "unhealthyReplicas", unhealthy, "pod", klog.KObj(firstUnhealthyPod))
    	}
    
    	// If the StatefulSet is being deleted, don't do anything other than updating
    	// status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/istio-agent/xds_proxy_test.go

    	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",
    		InstanceIPs:       []string{"1.1.1.1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/types.go

    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,3,opt,name=maxUnavailable"`
    
    	// 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".
    	//
    	// Valid policies are IfHealthyBudget and AlwaysAllow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. samples/bookinfo/README.md

    WARNING: No output specified for examples-bookinfo-mysqldb, examples-bookinfo-ratings-v-faulty, examples-bookinfo-reviews-v2, examples-bookinfo-reviews-v3, examples-bookinfo-productpage-v-flooding, examples-bookinfo-ratings-v-unhealthy, examples-bookinfo-ratings-v-unavailable, examples-bookinfo-ratings-v1, examples-bookinfo-details-v2, examples-bookinfo-reviews-v1, examples-bookinfo-productpage-v1, examples-bookinfo-ratings-v-delayed, examples-bookinfo-details-v1, examples-bookinfo-ratings-v2,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top