Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 120 for UNHEALTHY (0.12 sec)

  1. pkg/istio-agent/health/health_check.go

    				lastState = lastStateHealthy
    			}
    		} else {
    			healthCheckLog.Debugf("probe completed with unhealthy status: %v", err)
    			// we were not healthy, increment fail counter
    			numFail++
    			// wipe numSuccess (need consecutive failure)
    			numSuccess = 0
    			// if we reached the fail threshold, mark the target as unhealthy
    			if numFail == w.config.FailThresh && lastState != lastStateUnhealthy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K 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/apis/policy/types.go

    	// by specifying 0. This is a mutually exclusive setting with "minAvailable".
    	// +optional
    	MaxUnavailable *intstr.IntOrString
    
    	// 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: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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 {
    	h, uh := ExtractHealthEndpoints(cla)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/status/workloadentry.go

    	// health checks are enabled.
    	// 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. 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)
  9. samples/bookinfo/src/ratings/ratings.js

        // make the service unavailable once in 60 seconds
        setInterval(function () {
            unavailable = !unavailable
        }, 60000);
    }
    
    if (process.env.SERVICE_VERSION === 'v-unhealthy') {
        // make the service unavailable once in 15 minutes for 15 minutes.
        // 15 minutes is chosen since the Kubernetes's exponential back-off is reset after 10 minutes
        // of successful execution
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/healthcheck.go

    func EtcdHealthCheck(data []byte) error {
    	obj := etcdHealth{}
    	if err := json.Unmarshal(data, &obj); err != nil {
    		return err
    	}
    	if obj.Health != "true" {
    		return fmt.Errorf("Unhealthy status: %s", obj.Health)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top