-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows additional flags to be added to runc binaries without needing to update this package each time. While the typesafe flags are still the primary api for this pkg, this allows an easier transitional state when new flags are added to underlying runtimes following the runc CLI. Signed-off-by: Michael Crosby <michael@thepasture.io>
- Loading branch information
1 parent
6db4918
commit 16abe56
Showing
3 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,5 @@ type Runc struct { | |
Criu string | ||
SystemdCgroup bool | ||
Rootless *bool // nil stands for "auto" | ||
ExtraArgs []string | ||
} |