functions

The Fool guy's FAAS
git clone git://git.lair.cx/functions
Log | Files | Refs | README

consts.go (495B)


      1 package vmutils
      2 
      3 const (
      4 	DefaultSocketPath         = "./firecracker.sock"
      5 	DefaultKernelArgs         = "init=/fn/run console=ttyS0 reboot=k panic=1 pci=off nomodules random.trust_bootloader=on"
      6 	DefaultFirecrackerLogPath = "./firecracker.log"
      7 	DefaultVCpuCount          = 1
      8 	DefaultMemSize            = 128
      9 	//DefaultKernelArgs         = "ro console=ttyS0 noapic reboot=k panic=1 pci=off nomodules"
     10 
     11 	ReadyMessage         = "<<GUEST_READY>>"
     12 	NetworkInterfaceName = "veth0"
     13 
     14 	HTTPPort = 8080
     15 )