@@ -54,18 +54,21 @@ type RecreateDeploymentStrategy struct {
54
54
decoder runtime.Decoder
55
55
// hookExecutor can execute a lifecycle hook.
56
56
hookExecutor stratsupport.HookExecutor
57
- // retryTimeout is how long to wait for the replica count update to succeed
58
- // before giving up.
59
- retryTimeout time.Duration
60
57
// retryPeriod is how often to try updating the replica count.
61
58
retryPeriod time.Duration
59
+ // retryParams encapsulates the retry parameters
60
+ retryParams * kubectl.RetryParams
62
61
// events records the events
63
62
events record.EventSink
63
+ // now returns the current time
64
+ now func () time.Time
64
65
}
65
66
66
- // acceptorInterval is how often the UpdateAcceptor should check for
67
- // readiness.
68
- const acceptorInterval = 1 * time .Second
67
+ const (
68
+ // acceptorInterval is how often the UpdateAcceptor should check for
69
+ // readiness.
70
+ acceptorInterval = 1 * time .Second
71
+ )
69
72
70
73
// NewRecreateDeploymentStrategy makes a RecreateDeploymentStrategy backed by
71
74
// a real HookExecutor and client.
@@ -79,23 +82,23 @@ func NewRecreateDeploymentStrategy(oldClient kclient.Interface, tagClient client
79
82
scaler , _ := kubectl .ScalerFor (kapi .Kind ("ReplicationController" ), oldClient )
80
83
// TODO internalclientset: get rid of oldClient after next rebase
81
84
client := adapter .FromUnversionedClient (oldClient .(* kclient.Client ))
85
+
82
86
return & RecreateDeploymentStrategy {
83
87
out : out ,
84
88
errOut : errOut ,
85
89
events : events ,
86
90
until : until ,
87
91
rcClient : client .Core (),
88
- podClient : client .Core (),
89
92
eventClient : client .Core (),
93
+ podClient : client .Core (),
90
94
getUpdateAcceptor : func (timeout time.Duration , minReadySeconds int32 ) strat.UpdateAcceptor {
91
95
return stratsupport .NewAcceptAvailablePods (out , client .Core (), timeout , acceptorInterval , minReadySeconds )
92
96
},
93
97
scaler : scaler ,
94
98
decoder : decoder ,
95
99
hookExecutor : stratsupport .NewHookExecutor (client .Core (), tagClient , client .Core (), os .Stdout , decoder ),
96
- // TODO: Should be config.Spec.Strategy.RecreateParams.TimeoutSeconds - (time.Now - deployerPodStartTime)
97
- retryTimeout : 120 * time .Second ,
98
100
retryPeriod : 1 * time .Second ,
101
+ now : func () time.Time { return time .Now () },
99
102
}
100
103
}
101
104
@@ -117,12 +120,42 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
117
120
return fmt .Errorf ("couldn't decode config from deployment %s: %v" , to .Name , err )
118
121
}
119
122
123
+ var retryTimeout time.Duration
120
124
params := config .Spec .Strategy .RecreateParams
121
- retryParams := kubectl .NewRetryParams (s .retryPeriod , s .retryTimeout )
122
- waitParams := kubectl .NewRetryParams (s .retryPeriod , s .retryTimeout )
125
+
126
+ // for rolling strategy recreate might be the "initial strategy" and for that we need to
127
+ // set the TimeoutSeconds to rolling params.
128
+ rollingParams := config .Spec .Strategy .RollingParams
129
+
130
+ if params != nil {
131
+ if params .TimeoutSeconds != nil {
132
+ retryTimeout = time .Duration (* params .TimeoutSeconds ) * time .Second
133
+ } else {
134
+ retryTimeout = time .Duration (deployapi .DefaultRecreateTimeoutSeconds ) * time .Second
135
+ }
136
+ }
137
+
138
+ if retryTimeout == 0 && rollingParams != nil {
139
+ if rollingParams .TimeoutSeconds != nil {
140
+ retryTimeout = time .Duration (* rollingParams .TimeoutSeconds ) * time .Second
141
+ } else {
142
+ retryTimeout = time .Duration (deployapi .DefaultRollingIntervalSeconds ) * time .Second
143
+ }
144
+ }
145
+
146
+ deployerPod , err := s .podClient .Pods (to .Namespace ).Get (deployutil .DeployerPodNameForDeployment (to .Name ))
147
+ if err == nil {
148
+ deployerRunningSeconds := deployerPod .Status .StartTime .Time .Sub (s .now ())
149
+ retryTimeout -= deployerRunningSeconds
150
+ }
151
+ fmt .Fprintf (s .out , "--> Waiting up to %s for rollout to finish\n " , retryTimeout )
152
+
153
+ s .retryParams = kubectl .NewRetryParams (s .retryPeriod , retryTimeout )
154
+ waitParams := kubectl .NewRetryParams (s .retryPeriod , retryTimeout )
123
155
124
156
if updateAcceptor == nil {
125
- updateAcceptor = s .getUpdateAcceptor (time .Duration (* params .TimeoutSeconds )* time .Second , config .Spec .MinReadySeconds )
157
+ // updateAcceptor = s.getUpdateAcceptor(time.Duration(*params.TimeoutSeconds)*time.Second, config.Spec.MinReadySeconds)
158
+ updateAcceptor = s .getUpdateAcceptor (retryTimeout , config .Spec .MinReadySeconds )
126
159
}
127
160
128
161
// Execute any pre-hook.
@@ -143,7 +176,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
143
176
// Scale down the from deployment.
144
177
if from != nil {
145
178
fmt .Fprintf (s .out , "--> Scaling %s down to zero\n " , from .Name )
146
- _ , err := s .scaleAndWait (from , 0 , retryParams , waitParams )
179
+ _ , err := s .scaleAndWait (from , 0 , s . retryParams , waitParams )
147
180
if err != nil {
148
181
return fmt .Errorf ("couldn't scale %s to 0: %v" , from .Name , err )
149
182
}
@@ -173,7 +206,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
173
206
// Scale up to 1 and validate the replica,
174
207
// aborting if the replica isn't acceptable.
175
208
fmt .Fprintf (s .out , "--> Scaling %s to 1 before performing acceptance check\n " , to .Name )
176
- updatedTo , err := s .scaleAndWait (to , 1 , retryParams , waitParams )
209
+ updatedTo , err := s .scaleAndWait (to , 1 , s . retryParams , waitParams )
177
210
if err != nil {
178
211
return fmt .Errorf ("couldn't scale %s to 1: %v" , to .Name , err )
179
212
}
@@ -191,7 +224,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
191
224
// Complete the scale up.
192
225
if to .Spec .Replicas != int32 (desiredReplicas ) {
193
226
fmt .Fprintf (s .out , "--> Scaling %s to %d\n " , to .Name , desiredReplicas )
194
- updatedTo , err := s .scaleAndWait (to , desiredReplicas , retryParams , waitParams )
227
+ updatedTo , err := s .scaleAndWait (to , desiredReplicas , s . retryParams , waitParams )
195
228
if err != nil {
196
229
return fmt .Errorf ("couldn't scale %s to %d: %v" , to .Name , desiredReplicas , err )
197
230
}
0 commit comments