mirror of
https://github.com/containers/podman.git
synced 2025-07-03 01:08:02 +08:00
Merge pull request #22956 from containers/renovate/github.com-checkpoint-restore-checkpointctl-1.x
fix(deps): update module github.com/checkpoint-restore/checkpointctl to v1.2.0
This commit is contained in:
2
go.mod
2
go.mod
@ -10,7 +10,7 @@ require (
|
|||||||
github.com/Microsoft/go-winio v0.6.2
|
github.com/Microsoft/go-winio v0.6.2
|
||||||
github.com/blang/semver/v4 v4.0.0
|
github.com/blang/semver/v4 v4.0.0
|
||||||
github.com/buger/goterm v1.0.4
|
github.com/buger/goterm v1.0.4
|
||||||
github.com/checkpoint-restore/checkpointctl v1.1.0
|
github.com/checkpoint-restore/checkpointctl v1.2.0
|
||||||
github.com/checkpoint-restore/go-criu/v7 v7.1.0
|
github.com/checkpoint-restore/go-criu/v7 v7.1.0
|
||||||
github.com/containernetworking/plugins v1.5.0
|
github.com/containernetworking/plugins v1.5.0
|
||||||
github.com/containers/buildah v1.36.0
|
github.com/containers/buildah v1.36.0
|
||||||
|
4
go.sum
4
go.sum
@ -39,8 +39,8 @@ github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyY
|
|||||||
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
||||||
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
|
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
|
||||||
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||||
github.com/checkpoint-restore/checkpointctl v1.1.0 h1:plS/2zBzbAXO6DH/H+TqD7ZGhz8iQVb+NLgsOJSTWaw=
|
github.com/checkpoint-restore/checkpointctl v1.2.0 h1:c8lpj2zRuArZ8FC/Xjo/a2UpwjKJCpFZX3s5M0IHZVo=
|
||||||
github.com/checkpoint-restore/checkpointctl v1.1.0/go.mod h1:DtPd9M4bt/jdt+7DodFxm0lrzdevabk3cbni/FL4BY0=
|
github.com/checkpoint-restore/checkpointctl v1.2.0/go.mod h1:8oF+AtNUFJAI13ETcbB3clnjiwvviX0QzVBhYzQ8yBA=
|
||||||
github.com/checkpoint-restore/go-criu/v7 v7.1.0 h1:JbQyO4o+P8ycNTMLPiiDqXg49bAcy4WljWCzYQho35A=
|
github.com/checkpoint-restore/go-criu/v7 v7.1.0 h1:JbQyO4o+P8ycNTMLPiiDqXg49bAcy4WljWCzYQho35A=
|
||||||
github.com/checkpoint-restore/go-criu/v7 v7.1.0/go.mod h1:1svAtmbtvX4BKI45OFzgoTTLG7oYFKdColv/Vcsb2A8=
|
github.com/checkpoint-restore/go-criu/v7 v7.1.0/go.mod h1:1svAtmbtvX4BKI45OFzgoTTLG7oYFKdColv/Vcsb2A8=
|
||||||
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
|
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
|
||||||
|
65
vendor/github.com/checkpoint-restore/checkpointctl/lib/annotations.go
generated
vendored
Normal file
65
vendor/github.com/checkpoint-restore/checkpointctl/lib/annotations.go
generated
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
package metadata
|
||||||
|
|
||||||
|
const (
|
||||||
|
// CheckpointAnnotationEngine specifies the name of the container engine (e.g., podman, cri-o).
|
||||||
|
CheckpointAnnotationEngine = "org.criu.checkpoint.engine.name"
|
||||||
|
|
||||||
|
// CheckpointAnnotationEngineVersion specifies the version of the container engine.
|
||||||
|
CheckpointAnnotationEngineVersion = "org.criu.checkpoint.engine.version"
|
||||||
|
|
||||||
|
// CheckpointAnnotationName specifies the name of the container associated with the checkpoint.
|
||||||
|
CheckpointAnnotationName = "org.criu.checkpoint.container.name"
|
||||||
|
|
||||||
|
// CheckpointAnnotationPod specifies the name of the pod associated with the checkpoint.
|
||||||
|
CheckpointAnnotationPod = "org.criu.checkpoint.pod.name"
|
||||||
|
|
||||||
|
// CheckpointAnnotationPodID specifies the ID of the pod associated with the checkpoint.
|
||||||
|
CheckpointAnnotationPodID = "org.criu.checkpoint.pod.id"
|
||||||
|
|
||||||
|
// CheckpointAnnotationNamespace specifies the namespace of the pod associated with the checkpoint.
|
||||||
|
CheckpointAnnotationNamespace = "org.criu.checkpoint.pod.namespace"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRootfsImageName specifies the name of the root filesystem image associated with the checkpoint.
|
||||||
|
CheckpointAnnotationRootfsImageName = "org.criu.checkpoint.rootfsImageName"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRootfsImageUserRequested specifies the name of the root filesystem image requested by the user.
|
||||||
|
CheckpointAnnotationRootfsImageUserRequested = "org.criu.checkpoint.rootfsImageUserRequested"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRootfsImageSha specifies the SHA hash of the root filesystem image associated with the checkpoint.
|
||||||
|
CheckpointAnnotationRootfsImageSha = "org.criu.checkpoint.rootfsImageSha"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRootfsImageID specifies the ID of the root filesystem image associated with the checkpoint.
|
||||||
|
CheckpointAnnotationRootfsImageID = "org.criu.checkpoint.rootfsImageID"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRawImageName specifies the original unprocessed name of the image used to create the container.
|
||||||
|
CheckpointAnnotationRawImageName = "org.criu.checkpoint.rawImageName"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRuntimeName specifies the runtime used on the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationRuntimeName = "org.criu.checkpoint.runtime.name"
|
||||||
|
|
||||||
|
// CheckpointAnnotationRuntimeVersion specifies the version of the runtime used on the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationRuntimeVersion = "org.criu.checkpoint.runtime.version"
|
||||||
|
|
||||||
|
// CheckpointAnnotationCriuVersion specifies the version of CRIU used on the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationCriuVersion = "org.criu.checkpoint.criu.version"
|
||||||
|
|
||||||
|
// CheckpointAnnotationConmonVersion specifies the version of conmon used on the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationConmonVersion = "org.criu.checkpoint.conmon.version"
|
||||||
|
|
||||||
|
// CheckpointAnnotationHostArch specifies the CPU architecture of the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationHostArch = "org.criu.checkpoint.host.arch"
|
||||||
|
|
||||||
|
// CheckpointAnnotationHostKernel specifies the kernel version used by the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationHostKernel = "org.criu.checkpoint.host.kernel"
|
||||||
|
|
||||||
|
// CheckpointAnnotationCgroupVersion specifies the cgroup version used by the host where the checkpoint was created.
|
||||||
|
CheckpointAnnotationCgroupVersion = "org.criu.checkpoint.cgroup.version"
|
||||||
|
|
||||||
|
// CheckpointAnnotationDistributionVersion specifies the name of the host distribution on which the checkpoint was created.
|
||||||
|
// This annotation is particularly useful because some distributions may include non-upstream patches
|
||||||
|
// that can cause CRIU (Checkpoint/Restore in Userspace) to fail.
|
||||||
|
CheckpointAnnotationDistributionName = "org.criu.checkpoint.distribution.name"
|
||||||
|
|
||||||
|
// CheckpointAnnotationDistributionVersion specifies the version of the host distribution on which the checkpoint was created.
|
||||||
|
CheckpointAnnotationDistributionVersion = "org.criu.checkpoint.distribution.version"
|
||||||
|
)
|
4
vendor/github.com/checkpoint-restore/checkpointctl/lib/metadata.go
generated
vendored
4
vendor/github.com/checkpoint-restore/checkpointctl/lib/metadata.go
generated
vendored
@ -48,6 +48,10 @@ type ContainerConfig struct {
|
|||||||
Restored bool `json:"restored"`
|
Restored bool `json:"restored"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Spec struct {
|
||||||
|
Annotations map[string]string `json:"annotations,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
type ContainerdStatus struct {
|
type ContainerdStatus struct {
|
||||||
CreatedAt int64
|
CreatedAt int64
|
||||||
StartedAt int64
|
StartedAt int64
|
||||||
|
4
vendor/modules.txt
vendored
4
vendor/modules.txt
vendored
@ -86,8 +86,8 @@ github.com/bytedance/sonic/loader
|
|||||||
github.com/bytedance/sonic/option
|
github.com/bytedance/sonic/option
|
||||||
github.com/bytedance/sonic/unquote
|
github.com/bytedance/sonic/unquote
|
||||||
github.com/bytedance/sonic/utf8
|
github.com/bytedance/sonic/utf8
|
||||||
# github.com/checkpoint-restore/checkpointctl v1.1.0
|
# github.com/checkpoint-restore/checkpointctl v1.2.0
|
||||||
## explicit; go 1.18
|
## explicit; go 1.21
|
||||||
github.com/checkpoint-restore/checkpointctl/lib
|
github.com/checkpoint-restore/checkpointctl/lib
|
||||||
# github.com/checkpoint-restore/go-criu/v7 v7.1.0
|
# github.com/checkpoint-restore/go-criu/v7 v7.1.0
|
||||||
## explicit; go 1.18
|
## explicit; go 1.18
|
||||||
|
Reference in New Issue
Block a user