Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com>
  • Loading branch information
simonferquel committed Sep 27, 2017
1 parent 30da22a commit 2193829
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions api/specs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,14 @@ message ContainerSpec {
enum Isolation {
option (gogoproto.goproto_enum_prefix) = false;

// Default uses whatever default value from the container runtime
Default = 0 [(gogoproto.enumvalue_customname) = "ContainerIsolationDefault"];
// DEFAULT uses whatever default value from the container runtime
DEFAULT = 0 [(gogoproto.enumvalue_customname) = "ContainerIsolationDefault"];

// Process forces windows container isolation
Process = 1 [(gogoproto.enumvalue_customname) = "ContainerIsolationProcess"];
// PROCESS forces windows container isolation
PROCESS = 1 [(gogoproto.enumvalue_customname) = "ContainerIsolationProcess"];

// HyperV forces Hyper-V isolation
HyperV = 2 [(gogoproto.enumvalue_customname) = "ContainerIsolationHyperV"];
// HYPERV forces Hyper-V isolation
HYPERV = 2 [(gogoproto.enumvalue_customname) = "ContainerIsolationHyperV"];
}

// Isolation defines the isolation level for windows containers (default, process, hyperv).
Expand Down

0 comments on commit 2193829

Please sign in to comment.