• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# gVisor
2
3[gVisor](https://github.com/google/gvisor) is a user-space kernel, written in
4Go, that implements a substantial portion of the Linux system surface.
5
6`gVisor` uses `linux` OS, but the special `gvisor` VM type. There is nothing
7special regarding `gVisor` besides that. Here is an example manager config:
8
9```
10{
11	"name": "gvisor",
12	"target": "linux/amd64",
13	"http": ":12345",
14	"workdir": "/workdir",
15	"image": "/usr/local/bin/runsc",
16	"syzkaller": "/gopath/src/github.com/google/syzkaller",
17	"cover": false,
18	"procs": 8,
19	"type": "gvisor",
20	"vm": {
21		"count": 5,
22		"runsc_args": "-platform=kvm"
23	}
24}
25```
26