[addon-operator] create module hook queues regardless of DoModuleStartup - #825
Draft
Fkuloff wants to merge 2 commits into
Draft
[addon-operator] create module hook queues regardless of DoModuleStartup#825Fkuloff wants to merge 2 commits into
Fkuloff wants to merge 2 commits into
Conversation
Signed-off-by: Artem Kuleshov <artem.kuleshov@flant.com>
Signed-off-by: Artem Kuleshov <artem.kuleshov@flant.com>
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
The
Startupphase ofModuleRunno longer branches onhm.DoModuleStartup: a module in that phase always has its hook queues created and itsonStartuphooks executed.What this PR does / why we need it
modules.Startupis set only in theBasicModuleconstructor and inResetState, so a module in that phase has not completed its startup.DoModuleStartupduplicates that state and every ModuleRun producer computes it independently: converge sets it only for modules inModulesToEnable(converge-modules/task.go:155),functional.Scheduler.Addreplaces a stored request wholesale, andPushRunModuleTasknever sets it.A module that took such a task created no hook queues and ran no
onStartuphooks, and got neither back becausemodules.Startupis not re-entered. Its Synchronization tasks were dropped, the emptySynchronizationStatereportedIsCompleted() == true, and the chart was applied without the values those hooks were to fill.Special notes for your reviewer
Supersedes #740, which fixes the same root cause at three producer sites; the consumer-side fix also covers
PushRunModuleTaskandCreateReloadModulesTasks. The re-ensure call #797 added toQueueSynchronizationTasksis kept as a second line of defence.