From 6d4e86aed46178f0ca7db7852ebda687cac2fd1e Mon Sep 17 00:00:00 2001 From: moelsayed Date: Wed, 9 May 2018 21:27:37 +0200 Subject: [PATCH] Addon job timeout --- apis/management.cattle.io/v3/rke_types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/management.cattle.io/v3/rke_types.go b/apis/management.cattle.io/v3/rke_types.go index 597f0bff..a3da2aee 100644 --- a/apis/management.cattle.io/v3/rke_types.go +++ b/apis/management.cattle.io/v3/rke_types.go @@ -35,8 +35,8 @@ type RancherKubernetesEngineConfig struct { CloudProvider CloudProvider `yaml:"cloud_provider" json:"cloudProvider,omitempty"` // kubernetes directory path PrefixPath string `yaml:"prefix_path" json:"prefixPath,omitempty"` - // Number of status check retries for addon deployment jobs - AddonJobRetries int `yaml:"addon_job_retries" json:"addonJobRetries,omitempty" norman:"default=5"` + // Timeout in seconds for status check on addon deployment jobs + AddonJobTimeout int `yaml:"addon_job_timeout" json:"addonJobTimeout,omitempty" norman:"default=30"` // Bastion/Jump Host configuration BastionHost BastionHost `yaml:"bastion_host" json:"bastionHost,omitempty"` }