Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for UNHEALTHY (0.12 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // Deletes the pod from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies that the volume is NOT detached after maxWaitForUnmountDuration.
    // Marks the node as unhealthy.
    // Verifies that the volume is detached after maxWaitForUnmountDuration.
    func Test_Run_OneVolumeDetachOnUnhealthyNode(t *testing.T) {
    	// Arrange
    	volumePluginMgr, fakePlugin := volumetesting.GetTestVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	logger := klog.FromContext(ctx)
    	for k, v := range zoneToNodeConditions {
    		zoneSize.WithLabelValues(k).Set(float64(len(v)))
    		unhealthy, newState := nc.computeZoneStateFunc(v)
    		zoneHealth.WithLabelValues(k).Set(float64(100*(len(v)-unhealthy)) / float64(len(v)))
    		unhealthyNodes.WithLabelValues(k).Set(float64(unhealthy))
    		if newState != stateFullDisruption {
    			allAreFullyDisrupted = false
    		}
    		newZoneStates[k] = newState
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	// FIXME: we can't distinguish between it being unset or being explicitly set to 0
    	minHealthPercent := outlier.MinHealthPercent
    	if minHealthPercent >= 0 {
    		// When we are sending unhealthy endpoints, we should disable Panic Threshold. Otherwise
    		// Envoy will send traffic to "Unready" pods when the percentage of healthy hosts fall
    		// below minimum health percentage.
    		if features.SendUnhealthyEndpoints.Load() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. 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)
  5. pkg/istio-agent/agent_test.go

    		defer sdsServer.Stop()
    
    		Setup(t).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		t.Cleanup(func() {
    			_ = os.RemoveAll(dir)
    		})
    	})
    	t.Run("Unhealthy SDS socket", func(t *testing.T) {
    		dir := filepath.Dir(security.WorkloadIdentitySocketPath)
    		os.MkdirAll(dir, 0o755)
    
    		// starting an unresponsive listener on the socket
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            // Health is not ok
    
            // Log some diagnostic information to the console, in addition to aborting execution with an exception that will also be logged
            // Given that the execution infrastructure is in an unhealthy state, it may not shut down cleanly and report the execution.
            // So, log some details here just in case
            System.out.println(healthState.detailMessage);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if err != nil {
    				logger.Error(err, "Failed to get health of node", "node", klog.KRef("", string(attachedVolume.NodeName)))
    			}
    
    			// Force detach volumes from unhealthy nodes after maxWaitForUnmountDuration if force detach is enabled
    			// Ensure that the timeout condition checks this correctly so that the correct metric is updated below
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(connection.openStreamCount()).isEqualTo(0)
    
        // When the timeout is sent the connection doesn't immediately go unhealthy.
        assertThat(connection.isHealthy(System.nanoTime())).isTrue()
    
        // But if the ping doesn't arrive, the connection goes unhealthy.
        Thread.sleep(TimeUnit.NANOSECONDS.toMillis(Http2Connection.DEGRADED_PONG_TIMEOUT_NS.toLong()))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	// ClusterID where the endpoint is located
    	ClusterID cluster.ID
    }
    
    // Endpoint health status.
    type HealthStatus int32
    
    const (
    	// Healthy.
    	Healthy HealthStatus = 1
    	// Unhealthy.
    	UnHealthy HealthStatus = 2
    	// Draining - the constant matches envoy
    	Draining HealthStatus = 3
    )
    
    // IstioEndpoint defines a network address (IP:port) associated with an instance of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    	})
    
    	t.Run("Service selects WorkloadEntry: health status", func(t *testing.T) {
    		store, kube, fx := setupTest(t)
    		makeService(t, kube, service)
    
    		// Start as unhealthy, should have no instances
    		makeIstioObject(t, store, setHealth(workloadEntry, false))
    		instances := []EndpointResponse{}
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    
    		// Mark healthy, get instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top