-
Notifications
You must be signed in to change notification settings - Fork 43
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
Storage AutoYaST backward compatibility #1266
Closed
joseivanlopez
wants to merge
23
commits into
agama-project:master
from
joseivanlopez:legacy-autoyast-support
Closed
Storage AutoYaST backward compatibility #1266
joseivanlopez
wants to merge
23
commits into
agama-project:master
from
joseivanlopez:legacy-autoyast-support
Conversation
This file contains 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
joseivanlopez
force-pushed
the
legacy-autoyast-support
branch
2 times, most recently
from
May 29, 2024 14:22
bd98779
to
4d78af5
Compare
joseivanlopez
force-pushed
the
legacy-autoyast-support
branch
from
May 29, 2024 14:56
4d78af5
to
11288fe
Compare
…ama into legacy-autoyast-support
ancorgs
force-pushed
the
legacy-autoyast-support
branch
from
June 4, 2024 13:29
1ac2de9
to
2d64072
Compare
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.
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.