-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implements config loader to enable remote or external configs #935
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for endearing-brigadeiros-63f9d0 canceled.
|
I will rebase to the latest main branch, check the failing test, and post an update afterward. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some suggestions and questions
aa0283d
to
8d161a6
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #935 +/- ##
==========================================
- Coverage 61.88% 58.91% -2.97%
==========================================
Files 49 51 +2
Lines 1805 1952 +147
==========================================
+ Hits 1117 1150 +33
- Misses 688 802 +114 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@dcoric - can we bolster up the code coverage? 🚀 |
fix: config loader clone command issue fix: adds input validation, uses array arguments, prevented shell spawn
Adds additional tests for better cove
7dea019
to
55ce8ee
Compare
Done. |
This pull request introduces a significant update to the configuration management system of the GitProxy application. The main changes include adding support for multiple configuration sources, implementing a new configuration loader class, and providing the ability to reload configurations without restarting the application.
Configuration Management Enhancements:
Added support for multiple configuration sources in
config.schema.json
andproxy.config.json
, allowing the configuration to be sourced from files, HTTP endpoints, or Git repositories. [1] [2]Introduced a new
ConfigLoader
class insrc/config/ConfigLoader.js
to manage the loading and reloading of configurations from the specified sources. This class handles periodic reloading, merging configurations, and emitting events on configuration changes.CLI and API Improvements:
Added a new CLI command
reload-config
inpackages/git-proxy-cli/index.js
to trigger a configuration reload without restarting the process. This command checks for authentication and makes a POST request to the admin API endpoint to reload the configuration. [1] [2]Added a new admin-only API endpoint
/api/v1/admin/reload-config
insrc/service/index.js
to handle configuration reload requests. This endpoint validates the request, reloads the configuration, and restarts the services if necessary.Proxy Service Enhancements:
src/proxy/index.js
to support stopping and restarting the HTTP and HTTPS servers, enabling the application to apply new configurations without a full restart.Configuration Access and Updates:
src/config/index.js
to use the newConfigLoader
and updated existing getter functions to retrieve values from the current configuration. Added functionality to handle configuration updates dynamically and restart services as needed. [1] [2] [3]fix: config loader clone command issueThis PR fixes #934