Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 306 for Reconciled (0.15 sec)

  1. 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)
  2. pkg/controlplane/reconcilers/none.go

    limitations under the License.
    */
    
    // Package reconcilers a noop based reconciler
    package reconcilers
    
    import (
    	"net"
    
    	corev1 "k8s.io/api/core/v1"
    )
    
    // NoneEndpointReconciler allows for the endpoint reconciler to be disabled
    type noneEndpointReconciler struct{}
    
    // NewNoneEndpointReconciler creates a new EndpointReconciler that reconciles based on a
    // nothing. It is a no-op.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K 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. pkg/controlplane/reconcilers/reconcilers.go

    	Destroy()
    }
    
    // Type the reconciler type
    type Type string
    
    const (
    	// MasterCountReconcilerType will select the original reconciler
    	MasterCountReconcilerType Type = "master-count"
    	// LeaseEndpointReconcilerType will select a storage based reconciler
    	LeaseEndpointReconcilerType Type = "lease"
    	// NoneEndpointReconcilerType will turn off the endpoint reconciler
    	NoneEndpointReconcilerType Type = "none"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 13:49:31 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top