Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 182 for Reconciled (0.13 sec)

  1. pkg/controller/endpointslicemirroring/reconciler.go

    	// as the efficiency of EndpointSlice endpoints distribution
    	metricsCache *metrics.Cache
    }
    
    // reconcile takes an Endpoints resource and ensures that corresponding
    // EndpointSlices exist. It creates, updates, or deletes EndpointSlices to
    // ensure the desired set of addresses are represented by EndpointSlices.
    func (r *reconciler) reconcile(logger klog.Logger, endpoints *corev1.Endpoints, existingSlices []*discovery.EndpointSlice) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/reconciler.go

    	for _, parent := range ComponentDependencies {
    		for _, child := range parent {
    			ret[child] = make(chan struct{}, 1)
    		}
    	}
    	return ret
    }
    
    // Reconcile reconciles the associated resources.
    func (h *HelmReconciler) Reconcile() (*v1alpha1.InstallStatus, error) {
    	if err := util.CreateNamespace(h.kubeClient.Kube(), istioV1Alpha1.Namespace(h.iop.Spec), h.networkName(), h.opts.DryRun); err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    		return
    	}
    
    	fs.BoolVar(&o.DisableAttachDetachReconcilerSync, "disable-attach-detach-reconcile-sync", false, "Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/config/types.go

    type AttachDetachControllerConfiguration struct {
    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top