-
Notifications
You must be signed in to change notification settings - Fork 214
feat(config): add configurable web server listen addresses #2206
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(config): add configurable web server listen addresses #2206
Conversation
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## reboot #2206 +/- ##
==========================================
+ Coverage 92.25% 92.50% +0.25%
==========================================
Files 38 38
Lines 3924 3965 +41
==========================================
+ Hits 3620 3668 +48
+ Misses 242 237 -5
+ Partials 62 60 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
495124b
to
91a97e3
Compare
|
91a97e3
to
7eeaf20
Compare
|
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.
wait a min.... listen address is a part of webconfig, so #2165 works or not?
Add support for configurable listen addresses for the web server through both CLI flags and YAML configuration, instead of the hardcoded :28282 default. This change is needed to support a reverse proxy (kube-rbac-proxy) setup where the listen-address will use 127.0.0.1:28282 instead of 0.0.0.0:28282 Changes include: - Add Web.ListenAddresses []string field to config structure - Add --web.listen-address CLI flag (repeatable for multiple addresses) Signed-off-by: Sunil Thaha <sthaha@redhat.com>
7eeaf20
to
c9d7667
Compare
|
#2165 PR isn't complete and makes lots of changes unrelated to adding --web.config.file and --web.listen-address. We can revisit that PR once this merges. This pr is required for a critical feature related to securing kepler and make minimal change need to add |
Lets discussion implementation of #2165 in that pr. Merging this should not stop that PR from progressing.
d9d383c
into
sustainable-computing-io:reboot
Add support for configurable listen addresses for the web server through both CLI flags and YAML configuration, instead of the hardcoded :28282 default. This change is needed to support a reverse proxy (kube-rbac-proxy) setup where the listen-address will use 127.0.0.1:28282 instead of 0.0.0.0:28282
Changes include: