Skip to content

Commit a9b8931

Browse files
committed
deployment: carry over the securityContext from the deployment config to lifecycle hook
1 parent bd3e362 commit a9b8931

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/deploy/strategy/support/lifecycle.go

+6
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ func makeHookPod(hook *deployapi.LifecycleHook, rc *kapi.ReplicationController,
375375

376376
gracePeriod := int64(10)
377377

378+
podSecurityContext, err := kapi.Scheme.DeepCopy(rc.Spec.Template.Spec.SecurityContext)
379+
if err != nil {
380+
return nil, fmt.Errorf("unable to copy pod securityContext: %v", err)
381+
}
382+
378383
pod := &kapi.Pod{
379384
ObjectMeta: kapi.ObjectMeta{
380385
Name: namer.GetPodName(rc.Name, suffix),
@@ -397,6 +402,7 @@ func makeHookPod(hook *deployapi.LifecycleHook, rc *kapi.ReplicationController,
397402
Env: mergedEnv,
398403
Resources: resources,
399404
VolumeMounts: volumeMounts,
405+
SecurityContext: podSecurityContext,
400406
},
401407
},
402408
Volumes: volumes,

0 commit comments

Comments
 (0)