diff options
author | Miloslav Trmač <mitr@redhat.com> | 2018-12-03 20:54:07 +0100 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2018-12-06 23:31:54 +0100 |
commit | d3be6b8578fdae87f714ebcac6cb62c7b940f506 (patch) | |
tree | e7244d9c9b924eb5ed085030bdac2b286c5605bf /vendor/github.com/containers/buildah/docker | |
parent | 33fcb355ca079810d3bbdbc3eb121fca4f41f97f (diff) | |
download | podman-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.go | 5 |
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. |