summaryrefslogtreecommitdiffhomepage
path: root/runsc/main.go
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-10-01 10:29:45 -0700
committerShentubot <shentubot@google.com>2018-10-01 10:31:17 -0700
commita2ad8fef136b31989bfcd2f40003f6113aebaf1d (patch)
tree687966350701e0dc96440699cd32c79266e6bb75 /runsc/main.go
parent43e6aff50e23763d12c71b054f100fd91da46736 (diff)
Make multi-container the default mode for runsc
And remove multicontainer option. PiperOrigin-RevId: 215236981 Change-Id: I9fd1d963d987e421e63d5817f91a25c819ced6cb
Diffstat (limited to 'runsc/main.go')
-rw-r--r--runsc/main.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/runsc/main.go b/runsc/main.go
index 624db5f40..2a18c4b9e 100644
--- a/runsc/main.go
+++ b/runsc/main.go
@@ -60,7 +60,6 @@ var (
network = flag.String("network", "sandbox", "specifies which network to use: sandbox (default), host, none. Using network inside the sandbox is more secure because it's isolated from the host network.")
fileAccess = flag.String("file-access", "exclusive", "specifies which filesystem to use for the root mount: exclusive (default), shared. Volume mounts are always shared.")
overlay = flag.Bool("overlay", false, "wrap filesystem mounts with writable overlay. All modifications are stored in memory inside the sandbox.")
- multiContainer = flag.Bool("multi-container", false, "enable *experimental* multi-container support.")
watchdogAction = flag.String("watchdog-action", "log", "sets what action the watchdog takes when triggered: log (default), panic.")
panicSignal = flag.Int("panic-signal", -1, "register signal handling that panics. Usually set to SIGUSR2(12) to troubleshoot hangs. -1 disables it.")
)
@@ -140,7 +139,6 @@ func main() {
Platform: platformType,
Strace: *strace,
StraceLogSize: *straceLogSize,
- MultiContainer: *multiContainer,
WatchdogAction: wa,
PanicSignal: *panicSignal,
}