Skip to content

Commit

Permalink
make userNs configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
sauliusvl authored and dmandalidis committed Aug 5, 2024
1 parent 6ac2f4d commit 0828fa1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ public interface HostConfig {
@JsonProperty("PidMode")
String pidMode();

@Nullable
@JsonProperty("UsernsMode")
String usernsMode();

@Nullable
@JsonProperty("ShmSize")
Long shmSize();
Expand Down Expand Up @@ -459,6 +463,8 @@ default Builder hostPidMode() {
return this;
}

Builder usernsMode(String usernsMode);

Builder shmSize(Long shmSize);

Builder oomKillDisable(Boolean oomKillDisable);
Expand Down

0 comments on commit 0828fa1

Please sign in to comment.