-
Notifications
You must be signed in to change notification settings - Fork 2.6k
fix: remove nested structs from configuration #4523
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
Conversation
I noticed you're attempting to bump the |
Yup, gonna drop this for now. |
ed9a7cd
to
e8ef767
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.
Thanks! PTAL @thaJeztah
This needs a rebase now @shanduur |
9dcfc21
to
3d8eac6
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.
This broke the build now
3d8eac6
to
3458237
Compare
3458237
to
8177d20
Compare
@milosgajdos sorry that it took so long, it should be fixed now. I've rebased the PR, PTAL. If any fixes are needed, I'd be more than happy to do it! |
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.
LGTM. PTAL @thaJeztah @Jamstah @wy65701436
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.
Better structure is always good!
Can you rebase (squash commits) @shanduur; otherwise we're good to merge! |
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
ea1eb1e
to
b2cc4fe
Compare
@milosgajdos squashed. |
Hi! I've started designing Kubernetes Operator for Distribution (see https://registry-operator.dev/latest/), and I noticed that handling the configuration structure from code is extremely cumbersome due to the nested structs. Simplest fix is to define few new structures, and unflatten the configuration.
Progress: