Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for reconciliation (0.47 sec)

  1. pkg/features/kube_features.go

    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    	// Allows to delegate reconciliation of a Job object to an external controller.
    	JobManagedBy featuregate.Feature = "JobManagedBy"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3329
    	// alpha: v1.25
    	// beta: v1.26
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// podWorkers is responsible for driving the lifecycle state machine of each pod. The worker is
    	// notified of config changes, updates, periodic reconciliation, container runtime updates, and
    	// evictions of all desired pods and will invoke reconciliation methods per pod in separate
    	// goroutines. The podWorkers are authoritative in the kubelet for what pods are actually being
    	// run and their current state:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - HPA controller starts to expose metrics from the kube-controller-manager.\n- `reconciliations_total`: Number of reconciliation of HPA controller. \n- `reconciliation_duration_seconds`: The time(seconds) that the HPA controller takes to reconcile once. ([#116010](https://github.com/kubernetes/kubernetes/pull/116010), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    // of this call is the minimum latency for static pods to be restarted if they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    	if err != nil {
    		t.Fatalf("Updating job status: %v", err)
    	}
    
    	// Verify the pod finalizer is removed for a finished Job,
    	// even if the jobs pods are not tracked by the main reconciliation loop.
    	if err := wait.PollUntilContextTimeout(ctx, 100*time.Millisecond, wait.ForeverTestTimeout, true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top