mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
vendor: update containers/{buildah,common,image,storage}
The change in healthcheck_run_test.go, depends on the containers/image change: commit b6afa8ca7b324aca8fd5a7b5b206fc05c0c04874 Author: Mikhail Sokolov <msokolov@evolution.com> Date: Fri Mar 15 13:37:44 2024 +0200 Add support for Docker HealthConfig.StartInterval (v25.0.0+) Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
14
vendor/github.com/containers/buildah/run.go
generated
vendored
14
vendor/github.com/containers/buildah/run.go
generated
vendored
@@ -147,14 +147,15 @@ type RunOptions struct {
|
||||
// after processing the AddCapabilities set. If a capability appears in both
|
||||
// lists, it will be dropped.
|
||||
DropCapabilities []string
|
||||
// Devices are the additional devices to add to the containers
|
||||
// Devices are parsed additional devices to add
|
||||
Devices define.ContainerDevices
|
||||
// Secrets are the available secrets to use in a RUN
|
||||
// DeviceSpecs are unparsed additional devices to add
|
||||
DeviceSpecs []string
|
||||
// Secrets are the available secrets to use
|
||||
Secrets map[string]define.Secret
|
||||
// SSHSources is the available ssh agents to use in a RUN
|
||||
// SSHSources is the available ssh agents to use
|
||||
SSHSources map[string]*sshagent.Source `json:"-"`
|
||||
// RunMounts are mounts for this run. RunMounts for this run
|
||||
// will not show up in subsequent runs.
|
||||
// RunMounts are unparsed mounts to be added for this run
|
||||
RunMounts []string
|
||||
// Map of stages and container mountpoint if any from stage executor
|
||||
StageMountPoints map[string]internal.StageMountDetails
|
||||
@@ -166,6 +167,9 @@ type RunOptions struct {
|
||||
SystemContext *types.SystemContext
|
||||
// CgroupManager to use for running OCI containers
|
||||
CgroupManager string
|
||||
// CDIConfigDir is the location of CDI configuration files, if the files in
|
||||
// the default configuration locations shouldn't be used.
|
||||
CDIConfigDir string
|
||||
}
|
||||
|
||||
// RunMountArtifacts are the artifacts created when using a run mount.
|
||||
|
||||
Reference in New Issue
Block a user