Merge "Add update and post update tasks to step generated file."

This commit is contained in:
Zuul 2020-07-22 22:27:31 +00:00 committed by Gerrit Code Review
commit 95bbb095d5
1 changed files with 3 additions and 1 deletions

View File

@ -224,5 +224,7 @@ _PER_STEP_TASK_STRICTNESS = [False for i in range(DEFAULT_STEPS_MAX)]
PER_STEP_TASKS = {
'upgrade_tasks': _PER_STEP_TASK_STRICTNESS,
'deploy_steps_tasks': _PER_STEP_TASK_STRICTNESS
'deploy_steps_tasks': _PER_STEP_TASK_STRICTNESS,
'update_tasks': _PER_STEP_TASK_STRICTNESS,
'post_update_tasks': [False, False, False, False]
}