Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for waitforattach (0.31 sec)

  1. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"attachmentMetadata": "attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      optional bool attached = 1;
    
      // attachmentMetadata is populated with any
      // information returned by the attach operation, upon successful attach, that must be passed
      // into subsequent WaitForAttach or Mount calls.
      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      // +optional
      map<string, string> attachmentMetadata = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// attachmentMetadata is populated with any
    	// information returned by the attach operation, upon successful attach, that must be passed
    	// into subsequent WaitForAttach or Mount calls.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. pkg/apis/storage/types.go

    	// operation, i.e. the external-attacher.
    	Attached bool
    
    	// Upon successful attach, this field is populated with any
    	// information returned by the attach operation that must be passed
    	// into subsequent WaitForAttach or Mount calls.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    	AttachmentMetadata map[string]string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// attachmentMetadata is populated with any
    	// information returned by the attach operation, upon successful attach, that must be passed
    	// into subsequent WaitForAttach or Mount calls.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/iscsi_util.go

    		notMnt, err := b.mounter.IsLikelyNotMountPoint(globalPDPath)
    		if err != nil {
    			return err
    		}
    		if !notMnt {
    			// The volume is already mounted, therefore the previous WaitForAttach must have
    			// persisted the volume metadata. In addition, the metadata is actually *inside*
    			// globalPDPath and we can't write it here, because it was shadowed by the volume
    			// mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		// Assert
    		// 4. When the volume is mounted again, expect that UnmountDevice operation did not clear devicePath
    		if devicePath == "" {
    			klog.ErrorS(nil, "Expected WaitForAttach called with devicePath from Node.Status")
    			close(finished)
    			return "", fmt.Errorf("Expected devicePath from Node.Status")
    		}
    		close(finished)
    		return devicePath, nil
    	}
    	fakePlugin.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. pkg/volume/testing/testing.go

    	}
    	return "/dev/vdb-test", nil
    }
    
    func (fv *FakeVolume) GetAttachCallCount() int {
    	fv.RLock()
    	defer fv.RUnlock()
    	return fv.AttachCallCount
    }
    
    func (fv *FakeVolume) WaitForAttach(spec *volume.Spec, devicePath string, pod *v1.Pod, spectimeout time.Duration) (string, error) {
    	fv.Lock()
    	defer fv.Unlock()
    	fv.WaitForAttachCallCount++
    	if fv.WaitForAttachHook != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/detacher-defaults.go

    	return nil
    }
    
    // WaitForDetach is part of the volume.Detacher interface.
    func (d *detacherDefaults) WaitForDetach(devicePath string, timeout time.Duration) error {
    	klog.Warning(logPrefix(d.plugin.flexVolumePlugin), "using default WaitForDetach for device ", devicePath)
    	return nil
    }
    
    // UnmountDevice 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)
  10. CHANGELOG/CHANGELOG-1.11.md

    * Fix an issue in inter-pod affinity predicate that cause affinity to self being processed correctly ([#62591](https://github.com/kubernetes/kubernetes/pull/62591), [@bsalamat](https://github.com/bsalamat))
    * fix WaitForAttach failure issue for azure disk ([#62612](https://github.com/kubernetes/kubernetes/pull/62612), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top