Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for attachmentID (0.2 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    			}
    
    			attachID := getAttachmentName(csiMounter.volumeID, string(csiMounter.driverName), string(plug.host.GetNodeName()))
    			attachment := makeTestAttachment(attachID, "test-node", csiMounter.spec.Name())
    			_, err = csiMounter.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, meta.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to setup VolumeAttachment: %v", err)
    			}
    
    			if tc.unsetClient {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher_test.go

    			attachID := getAttachmentName(volID, testDriver, nodeName)
    			attachment := makeTestAttachment(attachID, nodeName, pvName)
    			attachment.Status.Attached = tc.initAttached
    			attachment.Status.AttachError = tc.initAttachErr
    			_, err = csiAttacher.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to attach: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	}
    	verifyAttachedVolume(t, attachedVolumes, volumeName, string(volumeName), nodeName, devicePath, true /* expectedMountedByNode */, false /* expectNonZeroDetachRequestedTime */)
    }
    
    // Mark a volume as attachment as uncertain.
    // Verify GetAttachState returns UncertainState
    // Verify GetAttachedVolumes return this volume
    func Test_MarkVolumeAsUncertain(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	parentID := TaskID(ev.args[1])
    	if parentID == BackgroundTask {
    		// Note: a value of 0 here actually means no parent, *not* the
    		// background task. Automatic background task attachment only
    		// applies to regions.
    		parentID = NoTask
    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

        * This ensures that attachment and detachment of volumes is independent of any single nodes’ availability. Meaning, if a node or kubelet becomes unavailable for any reason, the volumes attached to that node will be detached so they are free to be attached to other nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top