mirror of https://github.com/containers/podman.git
pkg/autoupdate: document fields of `updater`
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
parent
3fdd3b1ae3
commit
af3ce70844
|
@ -52,11 +52,11 @@ var supportedPolicies = map[string]Policy{
|
||||||
|
|
||||||
// updater includes shared state for auto-updating one or more containers.
|
// updater includes shared state for auto-updating one or more containers.
|
||||||
type updater struct {
|
type updater struct {
|
||||||
conn *dbus.Conn
|
conn *dbus.Conn // DBUS connection
|
||||||
options *entities.AutoUpdateOptions
|
options *entities.AutoUpdateOptions // User-specified options
|
||||||
unitToTasks map[string][]*task
|
unitToTasks map[string][]*task // Keeps track of tasks per unit
|
||||||
updatedRawImages map[string]bool
|
updatedRawImages map[string]bool // Keeps track of updated images
|
||||||
runtime *libpod.Runtime
|
runtime *libpod.Runtime // The libpod runtime
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
Loading…
Reference in New Issue