Merge pull request #117 from sha7khan/master
Enable all devices in privileged mode
This commit is contained in:
commit
436c21e2d3
@ -149,7 +149,7 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
|
|||||||
|
|
||||||
// Enable privileged mode.
|
// Enable privileged mode.
|
||||||
if config.Privileged {
|
if config.Privileged {
|
||||||
opts = append(opts, oci.WithPrivileged)
|
opts = append(opts, oci.WithPrivileged, oci.WithAllDevicesAllowed, oci.WithHostDevices, oci.WithNewPrivileges)
|
||||||
}
|
}
|
||||||
|
|
||||||
// WithPidsLimit sets the container's pid limit or maximum
|
// WithPidsLimit sets the container's pid limit or maximum
|
||||||
|
@ -41,7 +41,7 @@ test_privileged_nomad_job() {
|
|||||||
# depending on the execution environment.
|
# depending on the execution environment.
|
||||||
expected_capabilities="37"
|
expected_capabilities="37"
|
||||||
if [[ "$GITHUB_ACTIONS" == "true" ]]; then
|
if [[ "$GITHUB_ACTIONS" == "true" ]]; then
|
||||||
expected_capabilities="39"
|
expected_capabilities="40"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
actual_capabilities=$(nomad alloc exec -job privileged capsh --print|grep -i bounding|cut -d '=' -f 2|awk '{split($0,a,","); print a[length(a)]}')
|
actual_capabilities=$(nomad alloc exec -job privileged capsh --print|grep -i bounding|cut -d '=' -f 2|awk '{split($0,a,","); print a[length(a)]}')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user