aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containers/buildah/docker
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2018-12-03 20:54:07 +0100
committerMiloslav Trmač <mitr@redhat.com>2018-12-06 23:31:54 +0100
commitd3be6b8578fdae87f714ebcac6cb62c7b940f506 (patch)
treee7244d9c9b924eb5ed085030bdac2b286c5605bf /vendor/github.com/containers/buildah/docker
parent33fcb355ca079810d3bbdbc3eb121fca4f41f97f (diff)
downloadpodman-d3be6b8578fdae87f714ebcac6cb62c7b940f506.tar.gz
podman-d3be6b8578fdae87f714ebcac6cb62c7b940f506.tar.bz2
podman-d3be6b8578fdae87f714ebcac6cb62c7b940f506.zip
Vendor buildah after merging https://github.com/containers/buildah/pull/1214
This updates buildah for the sysregistriesv2 changes. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'vendor/github.com/containers/buildah/docker')
-rw-r--r--vendor/github.com/containers/buildah/docker/types.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/github.com/containers/buildah/docker/types.go b/vendor/github.com/containers/buildah/docker/types.go
index 759fc1246..6847d36fd 100644
--- a/vendor/github.com/containers/buildah/docker/types.go
+++ b/vendor/github.com/containers/buildah/docker/types.go
@@ -60,8 +60,9 @@ type HealthConfig struct {
Test []string `json:",omitempty"`
// Zero means to inherit. Durations are expressed as integer nanoseconds.
- Interval time.Duration `json:",omitempty"` // Interval is the time to wait between checks.
- Timeout time.Duration `json:",omitempty"` // Timeout is the time to wait before considering the check to have hung.
+ Interval time.Duration `json:",omitempty"` // Interval is the time to wait between checks.
+ Timeout time.Duration `json:",omitempty"` // Timeout is the time to wait before considering the check to have hung.
+ StartPeriod time.Duration `json:",omitempty"` // Time to wait after the container starts before running the first check.
// Retries is the number of consecutive failures needed to consider a container as unhealthy.
// Zero means inherit.