Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for attaching (0.19 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Deletes the node/volume/pod tuple from desiredStateOfWorld which succeeded in attaching
    // Verifies there are two attach call and one detach call.
    func Test_Run_OneVolumeAttachAndDetachMultipleNodesWithReadWriteOnce(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher_test.go

    				defer wg.Done()
    				attachID, err := csiAttacher.Attach(spec, types.NodeName(nodename))
    				if !fail && err != nil {
    					t.Errorf("expecting no failure, but got err: %v", err)
    				}
    				if fail && err == nil {
    					t.Errorf("expecting failure, but got no err")
    				}
    				if attachID != "" {
    					t.Errorf("expecting empty attachID, got %v", attachID)
    				}
    			}(tc.spec, tc.nodeName, tc.shouldFail)
    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/kubelet/kubelet.go

    	// configMapManager must then keep the needed config maps up-to-date as they change.
    	configMapManager configmap.Manager
    
    	// volumeManager observes the set of running pods and is responsible for attaching, mounting,
    	// unmounting, and detaching as those pods move through their lifecycle. It periodically
    	// synchronizes the set of known volumes to the set of actually desired volumes and cleans up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			}
    
    			csiMounter := mounter.(*csiMountMgr)
    			csiMounter.csiClient = setupClient(t, true)
    
    			attachID := getAttachmentName(csiMounter.volumeID, string(csiMounter.driverName), string(plug.host.GetNodeName()))
    
    			attachment := &storage.VolumeAttachment{
    				ObjectMeta: meta.ObjectMeta{
    					Name: attachID,
    				},
    				Spec: storage.VolumeAttachmentSpec{
    					NodeName: "test-node",
    					Attacher: CSIPluginName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Fixed an issue with the `garbagecollection` controller registering duplicate event handlers if discovery requests failed. ([#117992](https://github.com/kubernetes/kubernetes/pull/117992), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    	node := string(p.host.GetNodeName())
    	attachID := getAttachmentName(pvSource.VolumeHandle, pvSource.Driver, node)
    	volData := map[string]string{
    		volDataKey.specVolID:    spec.Name(),
    		volDataKey.volHandle:    pvSource.VolumeHandle,
    		volDataKey.driverName:   pvSource.Driver,
    		volDataKey.nodeName:     node,
    		volDataKey.attachmentID: attachID,
    	}
    
    	err = saveVolumeData(dataDir, volDataFileName, volData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Improved `kubectl run` and `kubectl debug` error messages upon attaching failures. ([#110764](https://github.com/kubernetes/kubernetes/pull/110764), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@js...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@js...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. cmd/iam.go

    			// equal the input group name, but we assume it is canonical).
    			dn = dnResult.NormDN
    		}
    		isGroup = true
    	}
    
    	// Backward compatibility in detaching non-normalized DNs.
    	if !isAttach {
    		var oldDN string
    		if isGroup {
    			oldDN = r.Group
    		} else {
    			oldDN = r.User
    		}
    		if oldDN != dn {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top