Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for Reconciled (0.23 sec)

  1. 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)
  2. 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)
  3. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	if err != nil {
    		scope.Errorf("Error during reconcile. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	if err := reconciler.SetStatusBegin(); err != nil {
    		scope.Errorf("Error during reconcile, failed to update status to Begin. Error: %s", err)
    		return reconcile.Result{}, err
    	}
    	status, err := reconciler.Reconcile()
    	if err != nil {
    		scope.Errorf("Error during reconcile: %s", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	"k8s.io/mount-utils"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world
    // with the actual state of the world by triggering attach, detach, mount, and
    // unmount operations.
    // Note: This is distinct from the Reconciler implemented by the attach/detach
    // controller. This reconciles state for the kubelet volume manager. That
    // reconciles state for the attach/detach controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	informer Informer[T],
    	reconciler func(namepace, name string, newObj T) error,
    	options ControllerOptions,
    ) Controller[T] {
    	if options.Workers == 0 {
    		options.Workers = 2
    	}
    
    	if len(options.Name) == 0 {
    		options.Name = fmt.Sprintf("%T-controller", *new(T))
    	}
    
    	c := &controller[T]{
    		options:    options,
    		informer:   informer,
    		reconciler: reconciler,
    		queue:      nil,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K 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/kubelet/volumemanager/reconciler/reconstruct.go

    limitations under the License.
    */
    
    package reconciler
    
    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    )
    
    // readyToUnmount returns true when reconciler can start unmounting volumes.
    func (rc *reconciler) readyToUnmount() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top