Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ErrImagePull (0.26 sec)

  1. pkg/kubelet/images/types.go

    	ErrImagePullBackOff = errors.New("ImagePullBackOff")
    
    	// ErrImageInspect - Unable to inspect image
    	ErrImageInspect = errors.New("ImageInspectError")
    
    	// ErrImagePull - General image pull error
    	ErrImagePull = errors.New("ErrImagePull")
    
    	// ErrImageNeverPull - Required Image is absent on host and PullPolicy is NeverPullImage
    	ErrImageNeverPull = errors.New("ErrImageNeverPull")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager_test.go

    			qps:        0.0,
    			burst:      0,
    			expected: []pullerExpects{
    				{[]string{"GetImageRef", "PullImage"}, ErrImagePull, true, false},
    				{[]string{"GetImageRef", "PullImage"}, ErrImagePull, true, false},
    				{[]string{"GetImageRef"}, ErrImagePullBackOff, false, false},
    				{[]string{"GetImageRef", "PullImage"}, ErrImagePull, true, false},
    				{[]string{"GetImageRef"}, ErrImagePullBackOff, false, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_manager.go

    			strings.TrimPrefix(err.Error(), crierrors.ErrSignatureValidationFailed.Error()),
    		)
    		return errMsg, crierrors.ErrSignatureValidationFailed
    	}
    
    	// Fallback for no specific error
    	return err.Error(), ErrImagePull
    }
    
    // applyDefaultImageTag parses a docker image string, if it doesn't contain any tag or digest,
    // a default tag will be applied.
    func applyDefaultImageTag(image string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    			success:  false,
    			pSuccess: false,
    		},
    		{
    			statuses: []v1.ContainerStatus{
    				{
    					Name:  containerName,
    					State: v1.ContainerState{Waiting: &v1.ContainerStateWaiting{Reason: "ErrImagePull"}},
    				},
    			},
    			success:  false,
    			pSuccess: false,
    		},
    		{
    			statuses: []v1.ContainerStatus{
    				{
    					Name:  containerName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		}
    		cID = lastState.Terminated.ContainerID
    
    	case waiting != nil:
    		// output some info for the most common pending failures
    		switch reason := waiting.Reason; reason {
    		case images.ErrImagePull.Error():
    			return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start: image can't be pulled", containerName, podName)
    		case images.ErrImagePullBackOff.Error():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top