-
Notifications
You must be signed in to change notification settings - Fork 5
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
CRAYSAT-1917: Fix jinja2 rendering of boot_sets data in sat bootprep
#280
base: main
Are you sure you want to change the base?
Conversation
Testing output on starlord- https://gist.github.com/annapoorna-s-alt/981715de25d248527c7200d50398c731 |
Adding unit tests are pending |
Core functionality is tested. Need to update the unit tests for the same. @annapoorna-s-alt - Would take the ticket forward, as she has tested the draft PR |
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.
Looks good so far, and testing output looks good. I suggested to Annapoorna that she could also test that other fields in the boot_sets support Jinja2 rendering since this has been added by the changes to jinja_rendered
.
I will review again once that testing is done and once unit tests are added.
Output of testing other fields in the boot_sets support Jinja2 rendering - https://gist.github.com/annapoorna-s-alt/981715de25d248527c7200d50398c731#file-expand-other-fields-with-jinja |
dcff8f2
to
70fa8fa
Compare
Make the following fixes: - Remove the `boot_set` property from `BaseInputItem`. It is not appropriate there, and it is redundant with `boot_sets` property that already exists in the `InputSessionTemplate` - Modify the `jinja_rendered` decorator to recursively render more complex objects like lists and dictionaries. I think this is safe, but we should consider any edge cases more carefully. - Remove the now unnecessary code that does a one-off Jinja2 rendering of `rootfs_provider_passthrough` in the `boot_sets`. Could still use unit test enhancements that test this new ability to render fields in the boot_sets. Test Description: Tested on a simple bootprep input file that used a variable in the `rootfs_provider_passthrough` field of a boot set in a BOS session template.
70fa8fa
to
71ef427
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.
The added unit test does not test jinja_rendered
, which is what is being changed. I have opened a PR to this branch to add such unit tests. Please take a look: #282
This testing looks good. |
Summary and Scope
Make the following fixes:
boot_set
property fromBaseInputItem
. It is not appropriate there, and it is redundant withboot_sets
property that already exists in theInputSessionTemplate
jinja_rendered
decorator to recursively render more complex objects like lists and dictionaries. I think this is safe, but we should consider any edge cases more carefully.rootfs_provider_passthrough
in theboot_sets
.Could still use unit test enhancements that test this new ability to render fields in the boot_sets.
Issues and Related PRs
List and characterize relationship to Jira/Github issues and other pull requests. Be sure to list dependencies.
Testing
List the environments in which these changes were tested.
Tested on:
Test description:
How were the changes tested and success verified? If schema changes were part of this change, how were those handled in your upgrade/downgrade testing?
Tested on a simple bootprep input file that used a variable in the
rootfs_provider_passthrough
field of a boot set in a BOS session template.Risks and Mitigations
Low
Pull Request Checklist