Merge pull request #6845 from josedonizetti/change-service-wait-interval-defaults

Change service wait and interval defaults
pull/6853/head
Medya Ghazizadeh 2020-03-01 11:49:33 -08:00 committed by GitHub
commit 92fe4dd28f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ import (
const ( const (
defaultK8sClientTimeout = 60 * time.Second defaultK8sClientTimeout = 60 * time.Second
// DefaultWait is the default wait time, in seconds // DefaultWait is the default wait time, in seconds
DefaultWait = 20 DefaultWait = 2
// DefaultInterval is the default interval, in seconds // DefaultInterval is the default interval, in seconds
DefaultInterval = 6 DefaultInterval = 1
) )
// K8sClient represents a kubernetes client // K8sClient represents a kubernetes client