Merge pull request #3593 from commonlisp/master

Add timeouts to HealthChecks and retry checks
This commit is contained in:
Brendan Burns
2015-02-05 15:40:22 -08:00
12 changed files with 60 additions and 21 deletions

View File

@@ -292,6 +292,8 @@ type Probe struct {
Handler `json:",inline"`
// Length of time before health checking is activated. In seconds.
InitialDelaySeconds int64 `json:"initialDelaySeconds,omitempty"`
// Length of time before health checking times out. In seconds.
TimeoutSeconds int64 `json:"timeoutSeconds,omitempty"`
}
// PullPolicy describes a policy for if/when to pull a container image