-
Notifications
You must be signed in to change notification settings - Fork 13
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
🌱 Update config definitions, base configs and initialize call #197
Conversation
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.
My understanding is that this brings us inline with konveyor/kai#526 . Stealing what Jonah did in #190 😁 . If that is true, this LGTM with the understanding the larger ✨ will come when we move the kai config to it's own file.
Yep, |
Based on changes to the kai runtime configurations in konveyor/kai#526, update the CLI arguments and initialize request object to match. Summary of changes: - Reorder the config field definitions - Use enum values in config definitions where available - Config keys with order 99 probably can be removed as they don't appear to be used - Aligned CLI arguments and initialize request payload types to the updated Kai configuration keys - Dropped config.toml handling since that file is no longer in use Signed-off-by: Scott J Dickerson <sdickers@redhat.com>
5f9707b
to
b43d52c
Compare
Signed-off-by: Scott J Dickerson <sdickers@redhat.com>
Signed-off-by: Scott J Dickerson <sdickers@redhat.com>
Signed-off-by: Scott J Dickerson <sdickers@redhat.com>
Signed-off-by: Scott J Dickerson <sdickers@redhat.com>
Based on changes to the kai runtime configurations in konveyor/kai#526, update the CLI arguments and initialize request object to match.
Summary of changes:
Reorder the config field definitions
Use enum values in config definitions where available
Config keys related to analyzer configuration still remain but cannot be passed along to the analyzer, see kai issue 550
Aligned CLI arguments and initialize request payload types to the updated Kai configuration keys
Dropped config.toml handling since that file is no longer in use
Prerequisite for: #184