Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,172 for attacher (0.25 sec)

  1. pkg/printers/internalversion/printers.go

    		{Name: "Attacher", Type: "string", Format: "name", Description: storagev1.VolumeAttachmentSpec{}.SwaggerDoc()["attacher"]},
    		{Name: "PV", Type: "string", Description: storagev1.VolumeAttachmentSource{}.SwaggerDoc()["persistentVolumeName"]},
    		{Name: "Node", Type: "string", Description: storagev1.VolumeAttachmentSpec{}.SwaggerDoc()["nodeName"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/detacher.go

    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type flexVolumeDetacher struct {
    	plugin *flexVolumeAttachablePlugin
    }
    
    var _ volume.Detacher = &flexVolumeDetacher{}
    
    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)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/detacher-defaults.go

    )
    
    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)
  4. okhttp/src/main/kotlin/okhttp3/Request.kt

      fun headers(name: String): List<String> = commonHeaders(name)
    
      /** Returns the tag attached with [T] as a key, or null if no tag is attached with that key. */
      @JvmName("reifiedTag")
      inline fun <reified T : Any> tag(): T? = tag(T::class)
    
      /** Returns the tag attached with [type] as a key, or null if no tag is attached with that key. */
      fun <T : Any> tag(type: KClass<T>): T? = type.java.cast(tags[type])
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    - Node affinity for Azure unzoned managed disks has been added. ([#67229](https://github.com/kubernetes/kubernetes/pull/67229), [@feiskyer](https://github.com/feiskyer)) Courtesy of SIG Azure
    - The Attacher/Detacher interfaces for local storage have been refactored  ([#66884](https://github.com/kubernetes/kubernetes/pull/66884), [@NickrenREN](https://github.com/NickrenREN)) Courtesy of SIG Storage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

        * Specifically the new controller watches the API server for scheduled pods. It processes each pod and ensures that any volumes that implement the volume Attacher interface are attached to the node their pod is scheduled to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is disabled via the command line")
    		} else if rc.syncDuration < time.Second {
    			logger.V(5).Info("Skipping reconciling attached volumes still attached since it is set to less than one second via the command line")
    		} else if time.Since(rc.timeOfLastSync) > rc.syncDuration {
    			logger.V(5).Info("Starting reconciling attached volumes still attached")
    			rc.sync()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		// All the "extra pods" should result in volume to be attached, the pods all share one volume
    		// which should be attached (+1), the volumes found only in the nodes status should be detached
    		if attachedVolumesNum == 1+extraPodsNum && detachedVolumesNum == nodesNum {
    			break
    		}
    		if i == 10 { // 10 seconds time out
    			t.Fatalf("Waiting for the volumes to attach/detach timed out: attached %d (expected %d); detached %d (%d)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// If no volume with the name volumeName exists in the list of volumes that
    	// should be attached to the specified node, the volume is implicitly added.
    	// If no node with the name nodeName exists in list of nodes managed by the
    	// attach/detach attached controller, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top