Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pullErrs (0.07 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_image.go

    		imageRef, err := m.imageService.PullImage(ctx, imgSpec, auth, podSandboxConfig)
    		// If there was no error, return success
    		if err == nil {
    			return imageRef, nil
    		}
    
    		pullErrs = append(pullErrs, err)
    	}
    
    	return "", utilerrors.NewAggregate(pullErrs)
    }
    
    // GetImageRef gets the ID of the image which has already been in
    // the local storage. It returns ("", nil) if the image isn't in the local storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top