Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for deutsch (0.13 sec)

  1. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    	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)
  2. pkg/controller/volume/attachdetach/config/types.go

    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    	// time is exceeded. Is false by default, and thus force detach on unmount is
    	// enabled.
    	DisableForceDetachOnTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // Verifies there are two attach calls and no detach calls.
    // Deletes the first node/volume/pod tuple from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies there is one detach call and no (new) attach calls.
    // Deletes the second node/volume/pod tuple from desiredStateOfWorld cache without first marking the node/volume as unmounted.
    // Verifies there are two detach calls and no (new) attach calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // 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.
    type Reconciler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // DesiredStateOfWorld defines a set of thread-safe operations supported on
    // the attach/detach controller's desired state of the world cache.
    // This cache contains nodes->volumes->pods where nodes are all the nodes
    // managed by the attach/detach controller, volumes are all the volumes that
    // should be attached to the specified node, and pods are the pods that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    // the attach/detach controller's actual state of the world cache.
    // This cache contains volumes->nodes i.e. a set of all volumes and the nodes
    // the attach/detach controller believes are successfully attached.
    // Note: This is distinct from the ActualStateOfWorld implemented by the kubelet
    // volume manager. They both keep track of different objects. This contains
    // attach/detach controller specific state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	logger := klog.FromContext(ctx)
    	logger.Info("Starting attach detach controller")
    	defer logger.Info("Shutting down attach detach controller")
    
    	synced := []kcache.InformerSynced{adc.podsSynced, adc.nodesSynced, adc.pvcsSynced, adc.pvsSynced,
    		adc.csiNodeSynced, adc.csiDriversSynced, adc.volumeAttachmentSynced}
    	if !kcache.WaitForNamedCacheSync("attach detach", ctx.Done(), synced...) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // spec represents specification of the desired attach/detach volume behavior.
      // Populated by the Kubernetes system.
      optional VolumeAttachmentSpec spec = 2;
    
      // status represents status of the VolumeAttachment request.
      // Populated by the entity completing the attach or detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeAttachmentStatus status = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/volume/fc/attacher.go

    	// just unmounted.
    	// 2 minutes should be enough within 6 minute force detach timeout.
    	var detachError error
    	err = wait.PollImmediate(10*time.Second, 2*time.Minute, func() (bool, error) {
    		detachError = detacher.manager.DetachDisk(*unMounter, devName)
    		if detachError != nil {
    			klog.V(4).Infof("fc: failed to detach disk %s (%s): %v", devName, deviceMountPath, detachError)
    			return false, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/metrics/metrics.go

    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    const pluginNameNotAvailable = "N/A"
    
    const (
    	// Force detach reason is timeout
    	ForceDetachReasonTimeout = "timeout"
    	// Force detach reason is the node has an out-of-service taint
    	ForceDetachReasonOutOfService = "out-of-service"
    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top