You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commits adds two new commands to sarus
* `ps`: list the containers
* `kill`: stops and destroy a container
In addition
* introduces the option `-n, --name` to the `run` command that allows to specify the name of the container
* changes the default name of the container from `container-*` to `sarus-container-*`
* changes the root path of `crun` from `/run/runc` to `/run/runc/<UID>` to ensure container isolation among users
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
11
11
- MPI hook: added support for the environment variable `MPI_COMPATIBILITY_TYPE` that defines the behaviour of the compatibility check of the libraries
12
12
that the hook mounts. Valid values are `major`, `full` and `strict`. Default value is `major`.
13
13
- SSH Hook: added a poststop functionality that kills the Dropbear process in case the hook does not join the container's PID namespace.
14
+
- Added the `sarus ps` command to list running containers
15
+
- Added the `sarus kill` command to terminate (and subsequently remove) containers
16
+
- Added the `-n, --name` option the `sarus run` command to specify the name of the container to run. If the option is not specified, Sarus assigns a default name in the form `sarus-container-*`.
14
17
15
18
### Changed
16
19
@@ -45,7 +48,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
45
48
- Glibc hook: fixed detection of the container's glibc version, which was causing a shell-init error on some systems
46
49
- SSH hook: permissions on the container's authorized keys file are now set explicitly, fixing possible errors caused by applying unsuitable defaults from the process.
0 commit comments