mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 17:07:20 +08:00 
			
		
		
		
	this pr is the first pass at enabling podman machine to use the apple hypervisor. there are still several TODO areas like host networking. once the decision is handled on what host networking should look like, these TODOs should be fairly quick to resolve. they also will impact the remove methods. you must also have vfkit (https://github.com/crc-org/vfkit) Signed-off-by: Brent Baude <bbaude@redhat.com> [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			433 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			433 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package machine
 | 
						|
 | 
						|
import "errors"
 | 
						|
 | 
						|
var (
 | 
						|
	ErrNoSuchVM         = errors.New("VM does not exist")
 | 
						|
	ErrWrongState       = errors.New("VM in wrong state to perform action")
 | 
						|
	ErrVMAlreadyExists  = errors.New("VM already exists")
 | 
						|
	ErrVMAlreadyRunning = errors.New("VM already running or starting")
 | 
						|
	ErrMultipleActiveVM = errors.New("only one VM can be active at a time")
 | 
						|
	ErrNotImplemented   = errors.New("functionality not implemented")
 | 
						|
)
 |