Skip to content

Commit ab4409f

Browse files
committed
Set termination grace period upon function updates
This was missed from #869 and fixes the controller so that it updates the termination grace period for functions. The problem would be that if a user updated the write_timeout variable used to compute the grace period, it would be ignored. The operator uses common code for deploy/update, so does not need a separate change. Thanks to @kevin-lindsay-1 for doing exploratory testing to find this. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent f0a81e6 commit ab4409f

File tree

2 files changed

+27
-17
lines changed

2 files changed

+27
-17
lines changed

pkg/handlers/deploy.go

+22-17
Original file line numberDiff line numberDiff line change
@@ -174,23 +174,8 @@ func makeDeploymentSpec(request types.FunctionDeployment, existingSecrets map[st
174174
return nil, err
175175
}
176176

177-
// add 2s jitter to avoid a race condition between write_timeout and grace period
178-
jitter := time.Second * 2
179-
terminationGracePeriod := time.Second*30 + jitter
180-
181-
if request.EnvVars != nil {
182-
if v, ok := request.EnvVars["write_timeout"]; ok && len(v) > 0 {
183-
period, err := time.ParseDuration(v)
184-
if err != nil {
185-
glog.Warningf("Function %s failed to parse write_timeout: %s",
186-
request.Service, err.Error())
187-
}
188-
189-
terminationGracePeriod = period + jitter
190-
}
191-
}
192-
193-
terminationGracePeriodSeconds := int64(terminationGracePeriod.Seconds())
177+
terminationGracePeriodSeconds :=
178+
getTerminationGracePeriodSeconds(request.EnvVars, request.Service)
194179

195180
enableServiceLinks := false
196181
allowPrivilegeEscalation := false
@@ -277,6 +262,26 @@ func makeDeploymentSpec(request types.FunctionDeployment, existingSecrets map[st
277262
return deploymentSpec, nil
278263
}
279264

265+
func getTerminationGracePeriodSeconds(envVars map[string]string, name string) int64 {
266+
// add 2s jitter to avoid a race condition between write_timeout and grace period
267+
jitter := time.Second * 2
268+
terminationGracePeriod := time.Second*30 + jitter
269+
270+
if envVars != nil {
271+
if v, ok := envVars["write_timeout"]; ok && len(v) > 0 {
272+
period, err := time.ParseDuration(v)
273+
if err != nil {
274+
glog.Warningf("Function %s failed to parse write_timeout: %s",
275+
name, err.Error())
276+
}
277+
278+
terminationGracePeriod = period + jitter
279+
}
280+
}
281+
282+
return int64(terminationGracePeriod.Seconds())
283+
}
284+
280285
func makeServiceSpec(request types.FunctionDeployment, factory k8s.FunctionFactory) *corev1.Service {
281286

282287
serviceSpec := &corev1.Service{

pkg/handlers/update.go

+5
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ func updateDeploymentSpec(
168168
deployment.Spec.Template.Spec.Containers[0].LivenessProbe = probes.Liveness
169169
deployment.Spec.Template.Spec.Containers[0].ReadinessProbe = probes.Readiness
170170

171+
terminationGracePeriodSeconds :=
172+
getTerminationGracePeriodSeconds(request.EnvVars, request.Service)
173+
174+
deployment.Spec.Template.Spec.TerminationGracePeriodSeconds = &terminationGracePeriodSeconds
175+
171176
// compare the annotations from args to the cache copy of the deployment annotations
172177
// at this point we have already updated the annotations to the new value, if we
173178
// compare to that it will produce an empty list

0 commit comments

Comments
 (0)