Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,894 for unready (0.19 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. plugin/pkg/admission/nodetaint/admission_test.go

    			expectedTaints: []api.Taint{notReadyTaint},
    		},
    		{
    			name:           "already tainted node is not tainted again",
    			node:           myTaintedNodeObj,
    			operation:      admission.Create,
    			options:        &metav1.CreateOptions{},
    			expectedTaints: []api.Taint{notReadyTaint},
    		},
    		{
    			name:           "NotReady taint is added to an unready node as well",
    			node:           myUnreadyNodeObj,
    			operation:      admission.Create,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. pkg/kubemark/controller.go

    	client    kubeclient.Interface
    }
    
    // kubemarkCluster is used to delete nodes from kubemark cluster once their
    // respective replication controllers have been deleted and the nodes have
    // become unready. This is to cover for the fact that there is no proper cloud
    // provider for kubemark that would care for deleting the nodes.
    type kubemarkCluster struct {
    	client            kubeclient.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top