mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00
37 lines
1.2 KiB
Go
37 lines
1.2 KiB
Go
package entities
|
|
|
|
import "go.podman.io/image/v5/types"
|
|
|
|
// AutoUpdateOptions are the options for running auto-update.
|
|
type AutoUpdateOptions struct {
|
|
// Authfile to use when contacting registries.
|
|
Authfile string
|
|
// Only check for but do not perform any update. If an update is
|
|
// pending, it will be indicated in the Updated field of
|
|
// AutoUpdateReport.
|
|
DryRun bool
|
|
// If restarting the service with the new image failed, restart it
|
|
// another time with the previous image.
|
|
Rollback bool
|
|
// Allow contacting registries over HTTP, or HTTPS with failed TLS
|
|
// verification. Note that this does not affect other TLS connections.
|
|
InsecureSkipTLSVerify types.OptionalBool
|
|
}
|
|
|
|
// AutoUpdateReport contains the results from running auto-update.
|
|
type AutoUpdateReport struct {
|
|
// ID of the container *before* an update.
|
|
ContainerID string
|
|
// Name of the container *before* an update.
|
|
ContainerName string
|
|
// Name of the image.
|
|
ImageName string
|
|
// The configured auto-update policy.
|
|
Policy string
|
|
// SystemdUnit running a container configured for auto updates.
|
|
SystemdUnit string
|
|
// Indicates the update status: true, false, failed, pending (see
|
|
// DryRun).
|
|
Updated string
|
|
}
|