forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support to auto-update containers running in systemd units as generated with `podman generate systemd --new`. `podman auto-update` looks up containers with a specified "io.containers.autoupdate" label (i.e., the auto-update policy). If the label is present and set to "image", Podman reaches out to the corresponding registry to check if the image has been updated. We consider an image to be updated if the digest in the local storage is different than the one of the remote image. If an image must be updated, Podman pulls it down and restarts the container. Note that the restarting sequence relies on systemd. At container-creation time, Podman looks up the "PODMAN_SYSTEMD_UNIT" environment variables and stores it verbatim in the container's label. This variable is now set by all systemd units generated by `podman-generate-systemd` and is set to `%n` (i.e., the name of systemd unit starting the container). This data is then being used in the auto-update sequence to instruct systemd (via DBUS) to restart the unit and hence to restart the container. Note that this implementation of auto-updates relies on systemd and requires a fully-qualified image reference to be used to create the container. This enforcement is necessary to know which image to actually check and pull. If we used an image ID, we would not know which image to check/pull anymore. Fixes: containers#3575 Signed-off-by: Valentin Rothberg <[email protected]>
- Loading branch information
Showing
33 changed files
with
620 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/containers/libpod/cmd/podman/cliconfig" | ||
"github.com/containers/libpod/pkg/adapter" | ||
"github.com/pkg/errors" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var ( | ||
autoUpdateCommand cliconfig.AutoUpdateValues | ||
autoUpdateDescription = `Auto update containers according to their auto-update policy. | ||
Auto-update policies are specified with the "io.containers.autoupdate" label.` | ||
_autoUpdateCommand = &cobra.Command{ | ||
Use: "auto-update [flags]", | ||
Short: "Auto update containers according to their auto-update policy", | ||
Long: autoUpdateDescription, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
restartCommand.InputArgs = args | ||
restartCommand.GlobalFlags = MainGlobalOpts | ||
return autoUpdateCmd(&restartCommand) | ||
}, | ||
Example: `podman auto-update`, | ||
} | ||
) | ||
|
||
func init() { | ||
autoUpdateCommand.Command = _autoUpdateCommand | ||
autoUpdateCommand.SetHelpTemplate(HelpTemplate()) | ||
autoUpdateCommand.SetUsageTemplate(UsageTemplate()) | ||
} | ||
|
||
func autoUpdateCmd(c *cliconfig.RestartValues) error { | ||
runtime, err := adapter.GetRuntime(getContext(), &c.PodmanCommand) | ||
if err != nil { | ||
return errors.Wrapf(err, "error creating libpod runtime") | ||
} | ||
defer runtime.DeferredShutdown(false) | ||
|
||
units, failures := runtime.AutoUpdate() | ||
for _, unit := range units { | ||
fmt.Println(unit) | ||
} | ||
var finalErr error | ||
if len(failures) > 0 { | ||
finalErr = failures[0] | ||
for _, e := range failures[1:] { | ||
finalErr = errors.Errorf("%v\n%v", finalErr, e) | ||
} | ||
} | ||
return finalErr | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3334,6 +3334,7 @@ _podman_podman() { | |
" | ||
commands=" | ||
attach | ||
auto-update | ||
build | ||
commit | ||
container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Unit] | ||
Description=Podman auto-update service | ||
Documentation=man:podman-auto-update(1) | ||
Wants=network.target | ||
After=network-online.target | ||
|
||
[Service] | ||
ExecStart=/usr/bin/podman auto-update | ||
|
||
[Install] | ||
WantedBy=multi-user.target default.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Unit] | ||
Description=Podman auto-update timer | ||
|
||
[Timer] | ||
OnCalendar=daily | ||
Persistent=true | ||
|
||
[Install] | ||
WantedBy=timers.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
% podman-auto-update(1) | ||
|
||
## NAME | ||
podman\-auto-update - Auto update containers according to their auto-update policy | ||
|
||
## SYNOPSIS | ||
**podman auto-update** | ||
|
||
## DESCRIPTION | ||
`podman auto-update` looks up containers with a specified "io.containers.autoupdate" label (i.e., the auto-update policy). | ||
|
||
If the label is present and set to "image", Podman reaches out to the corresponding registry to check if the image has been updated. | ||
An image is considered updated if the digest in the local storage is different than the one of the remote image. | ||
If an image must be updated, Podman pulls it down and restarts the systemd unit executing the container. | ||
|
||
At container-creation time, Podman looks up the "PODMAN_SYSTEMD_UNIT" environment variables and stores it verbatim in the container's label. | ||
This variable is now set by all systemd units generated by `podman-generate-systemd` and is set to `%n` (i.e., the name of systemd unit starting the container). | ||
This data is then being used in the auto-update sequence to instruct systemd (via DBUS) to restart the unit and hence to restart the container. | ||
|
||
Note that this implementation of auto updates relies on systemd and requires a fully-qualified image reference (e.g., quay.io/podman/stable:latest) to be used to create the container. | ||
This enforcement is necessary to know which image to actually check and pull. | ||
If we used an image ID, we would not know which image to check/pull anymore. | ||
|
||
## EXAMPLES | ||
|
||
``` | ||
# Start a container | ||
$ podman run -d busybox:latest top | ||
bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d | ||
# Generate a systemd unit for this container | ||
$ podman generate systemd --new --files bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d | ||
/home/user/containers/libpod/container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service | ||
# Load the new systemd unit and start it | ||
$ mv ./container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service ~/.config/systemd/user | ||
$ systemctl --user daemon-reload | ||
$ systemctl --user start container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service | ||
# Auto-update the container | ||
$ podman auto-update | ||
container-bc219740a210455fa27deacc96d50a9e20516492f1417507c13ce1533dbdcd9d.service | ||
``` | ||
|
||
## SEE ALSO | ||
podman(1), podman-generate-systemd(1), podman-run(1), systemd.unit(5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.