Config Merger only reads configuration on startup; should be more often
#517 opened on Jun 23, 2021
Repository metrics
- Stars
- (205 stars)
- PR merge metrics
- (PR metrics pending)
Description
The Config Merger is a controller that takes multiple configurations and merges them together. It requires a list of configurations to merge together.
It then periodically reads those configs and merges them together. Changes in the config are picked up in this loop, but changes to the config list are not.
This has caused issues when the config is changed, and Config Merger silently ignores those changes until it's rebooted. See https://github.com/GoogleCloudPlatform/oss-test-infra/issues/919
Additional logic to determine if the config list has changed and to either log this event or do less work if it hasn't changed would also be nice.