Storage AutoYaST backward compatibility#1266
Closed
joseivanlopez wants to merge 23 commits intoagama-project:masterfrom
Closed
Storage AutoYaST backward compatibility#1266joseivanlopez wants to merge 23 commits intoagama-project:masterfrom
joseivanlopez wants to merge 23 commits intoagama-project:masterfrom
Conversation
bd98779 to
4d78af5
Compare
4d78af5 to
11288fe
Compare
…ama into legacy-autoyast-support
1ac2de9 to
2d64072
Compare
Contributor
|
Closed in favor of #1284 (same content but cleaner history) |
ancorgs
added a commit
that referenced
this pull request
Jun 6, 2024
Created to replace #1266 (to sanitize history). Agama is going to offer new settings for configuring the storage devices, see #1256. That new settings will be applied by loading a config file (e.g., `$ agama config load myconfig.json`). Nevertheless, Agama is also going to temporary support the SLE15 AutoYaST schema to some extent, in order to make the transition smoother. For that, the json config file can indicate a "legacyAutoyastStorage" key equivalent to the partitioning section of the AutoYaST profile: ~~~ "legacyAutoyastStorage": [ { "device": "/dev/vda", "use": "all", "partitions": [...] } ] ~~~ This PR implements the support for the "legacyAutoyastStorage" settings, making possible to calculate an AutoYaST proposal. Converting the "partitioning" section from a XML AutoYaST profile to a "legacyAutoyastStorage" section is implemented at #1285 Note: The AutoYaST guided partitioning will not be supported, see https://doc.opensuse.org/projects/autoyast/#CreateProfile-Guided-Partitioning.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Agama is going to offer new settings for configuring the storage devices, see #1256. That new settings will be applied by loading a config file (e.g.,
$ agama config load myconfig.json). Nevertheless, Agama is also going to temporary support the SLE15 AutoYaST schema to some extent, in order to make the transition smoother. For that, the json config file can indicate a "legacyAutoyastStorage" key equivalent to the partitioning section of the AutoYaST profile:This PR implements the support for the "legacyAutoyastStorage" settings, making possible to calculate an AutoYaST proposal. Converting the "partitioning" section from a XML AutoYaST profile to a "legacyAutoyastStorage" section of a json config file is out of the scope and it will be addressed in a follow-up.
Note: The AutoYaST guided partitioning will not be supported, see https://doc.opensuse.org/projects/autoyast/#CreateProfile-Guided-Partitioning.