Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DisableAttachDetachReconcilerSync (0.26 sec)

  1. pkg/controller/volume/attachdetach/config/v1alpha1/zz_generated.conversion.go

    	out.DisableAttachDetachReconcilerSync = in.DisableAttachDetachReconcilerSync
    	out.ReconcilerSyncLoopPeriod = in.ReconcilerSyncLoopPeriod
    	out.DisableForceDetachOnTimeout = in.DisableForceDetachOnTimeout
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    func (o *AttachDetachControllerOptions) ApplyTo(cfg *attachdetachconfig.AttachDetachControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.DisableAttachDetachReconcilerSync = o.DisableAttachDetachReconcilerSync
    	cfg.ReconcilerSyncLoopPeriod = o.ReconcilerSyncLoopPeriod
    	cfg.DisableForceDetachOnTimeout = o.DisableForceDetachOnTimeout
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/config/types.go

    	// 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
    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top