summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-11-09 14:43:55 +0100
committerValentin Rothberg <rothberg@redhat.com>2021-11-09 15:32:36 +0100
commitfaf450ea18179bb0e4ae1213d3ca6c126b04b452 (patch)
tree67f72a91fc4191a6155e1e51500fe44483c463e4 /go.mod
parent3ccd999340462a5af62ac145c339d9c251721aec (diff)
downloadpodman-faf450ea18179bb0e4ae1213d3ca6c126b04b452.tar.gz
podman-faf450ea18179bb0e4ae1213d3ca6c126b04b452.tar.bz2
podman-faf450ea18179bb0e4ae1213d3ca6c126b04b452.zip
support health checks from image configs
Health checks may be defined in the container config or the config of an image. So far, Podman only looked at the container config. The plumbing happened in libimage but add a regression test to Podman as well to make sure the glue code will not regress. Note that I am pinning github.com/onsi/gomega to v1.16.0 since v1.17.0 requires go 1.16 which in turn is breaking CI. Fixes: #12226 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod7
1 files changed, 5 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index fc66db35f..91c13f596 100644
--- a/go.mod
+++ b/go.mod
@@ -12,7 +12,7 @@ require (
github.com/containernetworking/cni v1.0.1
github.com/containernetworking/plugins v1.0.1
github.com/containers/buildah v1.23.1
- github.com/containers/common v0.46.1-0.20211026130826-7abfd453c86f
+ github.com/containers/common v0.46.1-0.20211109131927-c342e496bf76
github.com/containers/conmon v2.0.20+incompatible
github.com/containers/image/v5 v5.16.1
github.com/containers/ocicrypt v1.1.2
@@ -45,7 +45,7 @@ require (
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
github.com/mrunalp/fileutils v0.5.0
github.com/onsi/ginkgo v1.16.5
- github.com/onsi/gomega v1.16.0
+ github.com/onsi/gomega v1.17.0
github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.0.2-0.20210819154149-5ad6f50d6283
github.com/opencontainers/runc v1.0.2
@@ -67,7 +67,10 @@ require (
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0
+ gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
k8s.io/api v0.22.3
k8s.io/apimachinery v0.22.3
)
+
+replace github.com/onsi/gomega => github.com/onsi/gomega v1.16.0