Skip to content

Commit ec9ff39

Browse files
author
OpenShift Bot
authored
Merge pull request #12188 from mfojtik/recreate-proportional
Merged by openshift-bot
2 parents 41702ed + db8d1b5 commit ec9ff39

File tree

3 files changed

+156
-71
lines changed

3 files changed

+156
-71
lines changed

pkg/deploy/api/types.go

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import (
1010
const (
1111
// DefaultRollingTimeoutSeconds is the default TimeoutSeconds for RollingDeploymentStrategyParams.
1212
DefaultRollingTimeoutSeconds int64 = 10 * 60
13+
// DefaultRecreateTimeoutSeconds is the default TimeoutSeconds for RecreateDeploymentStrategyParams.
14+
DefaultRecreateTimeoutSeconds int64 = 2 * 60
1315
// DefaultRollingIntervalSeconds is the default IntervalSeconds for RollingDeploymentStrategyParams.
1416
DefaultRollingIntervalSeconds int64 = 1
1517
// DefaultRollingUpdatePeriodSeconds is the default PeriodSeconds for RollingDeploymentStrategyParams.

pkg/deploy/strategy/recreate/recreate.go

+48-15
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,21 @@ type RecreateDeploymentStrategy struct {
5454
decoder runtime.Decoder
5555
// hookExecutor can execute a lifecycle hook.
5656
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
6057
// retryPeriod is how often to try updating the replica count.
6158
retryPeriod time.Duration
59+
// retryParams encapsulates the retry parameters
60+
retryParams *kubectl.RetryParams
6261
// events records the events
6362
events record.EventSink
63+
// now returns the current time
64+
now func() time.Time
6465
}
6566

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+
)
6972

7073
// NewRecreateDeploymentStrategy makes a RecreateDeploymentStrategy backed by
7174
// a real HookExecutor and client.
@@ -79,23 +82,23 @@ func NewRecreateDeploymentStrategy(oldClient kclient.Interface, tagClient client
7982
scaler, _ := kubectl.ScalerFor(kapi.Kind("ReplicationController"), oldClient)
8083
// TODO internalclientset: get rid of oldClient after next rebase
8184
client := adapter.FromUnversionedClient(oldClient.(*kclient.Client))
85+
8286
return &RecreateDeploymentStrategy{
8387
out: out,
8488
errOut: errOut,
8589
events: events,
8690
until: until,
8791
rcClient: client.Core(),
88-
podClient: client.Core(),
8992
eventClient: client.Core(),
93+
podClient: client.Core(),
9094
getUpdateAcceptor: func(timeout time.Duration, minReadySeconds int32) strat.UpdateAcceptor {
9195
return stratsupport.NewAcceptAvailablePods(out, client.Core(), timeout, acceptorInterval, minReadySeconds)
9296
},
9397
scaler: scaler,
9498
decoder: decoder,
9599
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,
98100
retryPeriod: 1 * time.Second,
101+
now: func() time.Time { return time.Now() },
99102
}
100103
}
101104

@@ -117,12 +120,42 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
117120
return fmt.Errorf("couldn't decode config from deployment %s: %v", to.Name, err)
118121
}
119122

123+
var retryTimeout time.Duration
120124
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)
123155

124156
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)
126159
}
127160

128161
// Execute any pre-hook.
@@ -143,7 +176,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
143176
// Scale down the from deployment.
144177
if from != nil {
145178
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)
147180
if err != nil {
148181
return fmt.Errorf("couldn't scale %s to 0: %v", from.Name, err)
149182
}
@@ -173,7 +206,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
173206
// Scale up to 1 and validate the replica,
174207
// aborting if the replica isn't acceptable.
175208
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)
177210
if err != nil {
178211
return fmt.Errorf("couldn't scale %s to 1: %v", to.Name, err)
179212
}
@@ -191,7 +224,7 @@ func (s *RecreateDeploymentStrategy) DeployWithAcceptor(from *kapi.ReplicationCo
191224
// Complete the scale up.
192225
if to.Spec.Replicas != int32(desiredReplicas) {
193226
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)
195228
if err != nil {
196229
return fmt.Errorf("couldn't scale %s to %d: %v", to.Name, desiredReplicas, err)
197230
}

0 commit comments

Comments
 (0)