Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
cc-check: Document "unrestricted_guest" requirement
Browse files Browse the repository at this point in the history
The `cc-check` command requires the "unrestricted_guest" KVM feature.
This is used as a heuristic to determine if the system is new enough to
run a Clear Container.

Fixes #421.

Signed-off-by: James O. D. Hunt <[email protected]>
  • Loading branch information
jodh-intel committed Jan 30, 2018
1 parent 3aec1b6 commit 93c71c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cc-check.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ var requiredKernelModules = map[string]kernelModule{
"kvm_intel": {
desc: "Intel KVM",
parameters: map[string]string{
"nested": "Y",
"nested": "Y",
// "VMX Unrestricted mode support". This is used
// as a heuristic to determine if the system is
// "new enough" to run a Clear Container
// (atleast a Westmere).
"unrestricted_guest": "Y",
},
},
Expand Down

0 comments on commit 93c71c9

Please sign in to comment.