Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Reconciled (0.15 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    				// Mark DSW populated to allow unmounting of volumes.
    				return true
    			}
    			// Mark devices paths as reconciled to allow unmounting of volumes.
    			rcInstance.volumesNeedUpdateFromNodeStatus = nil
    
    			// Act 2 - reconcile once
    			rcInstance.reconcile()
    
    			// Assert 2
    			// MountDevice was attempted
    			var lastErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/config.go

    	// that can not be served locally
    	PeerProxy utilpeerproxy.Interface
    	// PeerEndpointReconcileInterval defines how often the endpoint leases are reconciled in etcd.
    	PeerEndpointReconcileInterval time.Duration
    	// PeerEndpointLeaseReconciler updates the peer endpoint leases
    	PeerEndpointLeaseReconciler peerreconcilers.PeerEndpointLeaseReconciler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    type CompletedConfig struct {
    	*completedConfig
    }
    
    // EndpointReconcilerConfig holds the endpoint reconciler and endpoint reconciliation interval to be
    // used by the master.
    type EndpointReconcilerConfig struct {
    	Reconciler reconcilers.EndpointReconciler
    	Interval   time.Duration
    }
    
    // Instance contains state for a Kubernetes cluster api server instance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    				continue
    			}
    			// Static pods should be reconciled the same way as regular pods
    		}
    
    		// TODO: reconcile being calculated in the config manager is questionable, and avoiding
    		// extra syncs may no longer be necessary. Reevaluate whether Reconcile and Sync can be
    		// merged (after resolving the next two TODOs).
    
    		// Reconcile Pod "Ready" condition if necessary. Trigger sync pod for reconciliation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // directories. No config changes are sent to pod workers while this method
    // is executing which means no new pods can appear. After this method completes
    // the desired state of the kubelet should be reconciled with the actual state
    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123273](https://github.com/kubernetes/kubernetes/pull/123273), [@mimowo](https://github.com/mimowo))
    - Added alpha-level support for the SuccessPolicy in Jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Endpointslices mirrored from Endpoints by the EndpointSliceMirroring controller were not reconciled if modified ([#124131](https://github.com/kubernetes/kubernetes/pull/124131), [@zyjhtangtang](https://github.com/zyjhtangtang)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. pkg/kubelet/config/config.go

    			// no ADD or UPDATE or DELETE pods from the source. This signals kubelet that
    			// the source is ready.
    			s.updates <- *adds
    		}
    		// Only add reconcile support here, because kubelet doesn't support Snapshot update now.
    		if len(reconciles.Pods) > 0 {
    			s.updates <- *reconciles
    		}
    
    	case PodConfigNotificationSnapshotAndUpdates:
    		if len(removes.Pods) > 0 || len(adds.Pods) > 0 || firstSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    						return false, nil
    					}
    					return true, nil
    				},
    			)
    			if err != nil {
    				t.Fatalf("expected labels to be reconciled but it failed with %v", err)
    			}
    		})
    	}
    }
    
    func waitForVolumeUnmount(
    	volumeManager kubeletvolume.VolumeManager,
    	pod *v1.Pod) error {
    	var podVolumes kubecontainer.VolumeMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	nodesSynced cache.InformerSynced
    
    	// reconciler is an util used to reconcile EndpointSlice changes.
    	reconciler *endpointslicerec.Reconciler
    
    	// triggerTimeTracker is an util used to compute and export the
    	// EndpointsLastChangeTriggerTime annotation.
    	triggerTimeTracker *endpointsliceutil.TriggerTimeTracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top