Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 182 for deutsch (0.15 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/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)
  3. 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)
  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/volume/flexvolume/detacher-defaults.go

    	"k8s.io/mount-utils"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    type detacherDefaults flexVolumeDetacher
    
    // Detach is part of the volume.Detacher interface.
    func (d *detacherDefaults) Detach(volumeName string, hostName types.NodeName) error {
    	klog.Warning(logPrefix(d.plugin.flexVolumePlugin), "using default Detach for volume ", volumeName, ", host ", hostName)
    	return nil
    }
    
    // WaitForDetach is part of the volume.Detacher interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/detacher.go

    var _ volume.DeviceUnmounter = &flexVolumeDetacher{}
    
    // Detach is part of the volume.Detacher interface.
    func (d *flexVolumeDetacher) Detach(volumeName string, hostName types.NodeName) error {
    
    	call := d.plugin.NewDriverCall(detachCmd)
    	call.Append(volumeName)
    	call.Append(string(hostName))
    
    	_, err := call.Run()
    	if isCmdNotSupportedErr(err) {
    		return (*detacherDefaults)(d).Detach(volumeName, hostName)
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top