Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FailedAttachVolume (0.19 sec)

  1. pkg/kubelet/events/event.go

    	NodeNotSchedulable                   = "NodeNotSchedulable"
    	StartingKubelet                      = "Starting"
    	KubeletSetupFailed                   = "KubeletSetupFailed"
    	FailedAttachVolume                   = "FailedAttachVolume"
    	FailedMountVolume                    = "FailedMount"
    	VolumeResizeFailed                   = "VolumeResizeFailed"
    	VolumeResizeSuccess                  = "VolumeResizeSuccessful"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    		for _, pod := range volumeToAttach.ScheduledPods {
    			rc.recorder.Eventf(pod, v1.EventTypeWarning, kevents.FailedAttachVolume, simpleMsg)
    		}
    		// Log detailed message to system admin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    			},
    			[]string{"Warning FailedAttachVolume Multi-Attach error for volume \"volume-name\" Volume is already exclusively attached to one node and can't be attached to another"},
    		},
    		{
    			"pods in the same namespace use the volume",
    			[]nodeWithPods{
    				{"node1", []string{"ns1/pod1"}},
    				{"node2", []string{"ns1/pod2"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	eventRecorderFunc := func(err *error) {
    		if *err != nil {
    			for _, pod := range volumeToAttach.ScheduledPods {
    				og.recorder.Eventf(pod, v1.EventTypeWarning, kevents.FailedAttachVolume, (*err).Error())
    			}
    		}
    	}
    
    	attachableVolumePluginName := unknownAttachableVolumePlugin
    
    	// Get attacher plugin
    	attachableVolumePlugin, err :=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top