Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,631 for unready (0.76 sec)

  1. pkg/controller/podautoscaler/replica_calculator.go

    					// Ignore sample if pod is unready or one window of metric wasn't collected since last state transition.
    					unready = condition.Status == v1.ConditionFalse || metric.Timestamp.Before(condition.LastTransitionTime.Time.Add(metric.Window))
    				} else {
    					// Ignore metric if pod is unready and it has never been ready.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. releasenotes/notes/39825.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 39825
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 06:36:52 UTC 2022
    - 220 bytes
    - Viewed (0)
  3. releasenotes/notes/36274.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** support for sending unready endpoints also to Envoy. This will be useful when slow start mode in Envoy is enabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 09 06:52:25 UTC 2022
    - 288 bytes
    - Viewed (0)
  4. pkg/kubelet/status/generate_test.go

    		},
    	}
    
    	for i, test := range tests {
    		ready := GenerateContainersReadyCondition(test.spec, test.containerStatuses, test.podPhase)
    		if !reflect.DeepEqual(ready, test.expectReady) {
    			t.Errorf("On test case %v, expectReady:\n%+v\ngot\n%+v\n", i, test.expectReady, ready)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. pkg/proxy/endpointslicecache_test.go

    				},
    			},
    		},
    		// 2 slices with all endpoints overlapping, more unready in first than
    		// second. If an endpoint is marked ready, we add it to the
    		// EndpointsMap, even if conditions.Ready isn't true for another
    		// matching endpoint
    		"2 slices, overlapping endpoints, some endpoints unready in 1 or both": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/types.go

    	// HorizontalPodAutoscalerInitialReadinessDelay is period after pod start during which readiness
    	// changes are treated as readiness being set for the first time. The only effect of this is that
    	// HPA will disregard CPU samples from unready pods that had last readiness change during that
    	// period.
    	HorizontalPodAutoscalerInitialReadinessDelay metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/replica_calculator_test.go

    			expectReadyPodCount: 0,
    			expectUnreadyPods:   sets.NewString("bentham"),
    			expectMissingPods:   sets.NewString(),
    			expectIgnoredPods:   sets.NewString(),
    		}, {
    			name: "unready an unready pod during initialization period - CPU",
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "lucretius",
    					},
    					Status: v1.PodStatus{
    						Phase: v1.PodSucceeded,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    			expectedUnready: 0,
    		},
    		{
    			name:            "pod running phase and tolerate unready",
    			pod:             makePod(v1.PodRunning, false, false),
    			service:         makeService(true),
    			expectedReady:   1,
    			expectedUnready: 0,
    		},
    		{
    			name:            "pod running phase and tolerate unready being deleted",
    			pod:             makePod(v1.PodRunning, false, true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_traffic_policy.go

    	locality *core.Locality, proxyLabels map[string]string, meshConfig *meshconfig.MeshConfig,
    ) {
    	// Disable panic threshold when SendUnhealthyEndpoints is enabled as enabling it "may" send traffic to unready
    	// end points when load balancer is in panic mode.
    	if features.SendUnhealthyEndpoints.Load() {
    		c.CommonLbConfig.HealthyPanicThreshold = &xdstype.Percent{Value: 0}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction.go

    	}
    
    	// At this point there was either no PDB or we succeeded in decrementing or
    	// the pod was unhealthy (unready) and we have enough healthy replicas
    
    	deleteOptions := originalDeleteOptions
    
    	// Set deleteOptions.Preconditions.ResourceVersion to ensure
    	// the pod hasn't been considered healthy (ready) since we calculated
    	if updateDeletionOptions {
    		// Take a copy so we can compare to client-provied Options later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top