From 802897bc33a8c1de05fc71453e842acaf2c1f76b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 23 Jun 2018 10:12:35 +0200 Subject: pkg/instance: say that gvisor can create instances out of thin air --- pkg/instance/instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/instance') diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go index cec79459a..2849098ac 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -31,7 +31,7 @@ type Env struct { func NewEnv(cfg *mgrconfig.Config) (*Env, error) { switch cfg.Type { - case "gce", "qemu": + case "gce", "qemu", "gvisor": default: return nil, fmt.Errorf("test instances can only work with qemu/gce") } -- cgit mrf-deployment