Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Disable seccomp and apparmor for the runner in nomad. Fixes #1306
Browse files Browse the repository at this point in the history
  • Loading branch information
evanphx committed May 6, 2021
1 parent cea1b37 commit 5b1a74d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/serverinstall/nomad.go
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,10 @@ func waypointRunnerNomadJob(c nomadConfig, opts *InstallRunnerOpts) *api.Job {
"-vvv",
},
"auth_soft_fail": c.authSoftFail,
"security_opt": []string{
"seccomp=unconfined",
"apparmor=unconfined",
},
}

cpu := defaultResourcesCPU
Expand Down

0 comments on commit 5b1a74d

Please sign in to comment.