summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-20 08:35:57 -0400
committerGitHub <noreply@github.com>2022-04-20 08:35:57 -0400
commit51237bba2c126f1ca72b460452633fd8210dd56b (patch)
treec838b334351b64d6802acba09173f1339d4bd207 /test
parent9c36d8458c1b4d4ab504a7ff54db87489cbb0254 (diff)
parent519535daa0e5c4ce27a77cea0fb24d87f6ee8c54 (diff)
downloadpodman-51237bba2c126f1ca72b460452633fd8210dd56b.tar.gz
podman-51237bba2c126f1ca72b460452633fd8210dd56b.tar.bz2
podman-51237bba2c126f1ca72b460452633fd8210dd56b.zip
Merge pull request #13928 from flouthoc/healthcheck-defaults
healthcheck: set default healthcheck `Interval` if not specified in image
Diffstat (limited to 'test')
-rw-r--r--test/e2e/healthcheck_run_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/e2e/healthcheck_run_test.go b/test/e2e/healthcheck_run_test.go
index 757eaed20..23f1a1dbf 100644
--- a/test/e2e/healthcheck_run_test.go
+++ b/test/e2e/healthcheck_run_test.go
@@ -325,6 +325,8 @@ HEALTHCHECK CMD ls -l / 2>&1`, ALPINE)
inspect := podmanTest.InspectContainer("hctest")
// Check to make sure a default time value was added
Expect(inspect[0].Config.Healthcheck.Timeout).To(BeNumerically("==", 30000000000))
+ // Check to make sure a default time interval value was added
+ Expect(inspect[0].Config.Healthcheck.Interval).To(BeNumerically("==", 30000000000))
// Check to make sure characters were not coerced to utf8
Expect(inspect[0].Config.Healthcheck.Test).To(Equal([]string{"CMD-SHELL", "ls -l / 2>&1"}))
})