-
Notifications
You must be signed in to change notification settings - Fork 991
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
Fixes #37857 - Tang support multiple phys. volumes #10334
Open
MartinSpiessl
wants to merge
1
commit into
theforeman:develop
Choose a base branch
from
ATIX-AG:clevis-tang-multiple-disks
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fixes #37857 - Tang support multiple phys. volumes #10334
MartinSpiessl
wants to merge
1
commit into
theforeman:develop
from
ATIX-AG:clevis-tang-multiple-disks
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
sbernhard
reviewed
Sep 23, 2024
app/views/unattended/provisioning_templates/snippet/disk_enc_clevis_tang.erb
Show resolved
Hide resolved
sbernhard
reviewed
Sep 23, 2024
app/views/unattended/provisioning_templates/snippet/disk_enc_clevis_tang.erb
Show resolved
Hide resolved
sbernhard
reviewed
Sep 23, 2024
app/views/unattended/provisioning_templates/snippet/disk_enc_clevis_tang.erb
Outdated
Show resolved
Hide resolved
jloeser
approved these changes
Sep 24, 2024
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 to me.
app/views/unattended/provisioning_templates/snippet/disk_enc_clevis_tang.erb
Outdated
Show resolved
Hide resolved
Can you please rebase this PR? |
MartinSpiessl
force-pushed
the
clevis-tang-multiple-disks
branch
from
November 5, 2024 07:28
712dd33
to
c80f28b
Compare
Sure, I just rebased onto foreman/develop with no conflicts. |
sbernhard
reviewed
Nov 5, 2024
app/views/unattended/provisioning_templates/snippet/disk_enc_clevis_tang.erb
Outdated
Show resolved
Hide resolved
Bernhard asked me to take a look, too. I tested the script locally and took a look at the code. LGTM despite the indentation of the for loop Bernhard already mentioned. |
Often there is more than a single disk that gets encrypted during installation. When multiple disks are available and `autopart` is used in the kickstart config, all disks get encrypted and put into a volume group on which a logical volume for the root partition is created. Another example is when users add a separate disk for directories like /var to separate application data. This means we need to recursively resolve all underlying encrypted volumes, not just for the root partition. To identify these, we take all entries from /etc/crypttab, which should catch all block devices that were encrypted in the installation process. As this feature should also work for Ubuntu, we also address some bugs with the Ubuntu support: - disk_enc_clevis_tang.erb needs to work with dash (not just bash) - the check of the minor version in the autoinstall template is broken, recommendation is also to not rely on the minor version for this OS - PKG_MANAGER_INSTALL is missing in preseed_autoinstall_cloud_init.erb
MartinSpiessl
force-pushed
the
clevis-tang-multiple-disks
branch
from
November 6, 2024 06:08
c80f28b
to
eda914c
Compare
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.
Link to the corresponding issue: https://projects.theforeman.org/issues/37857
This fixes some bugs that I found in the clevis/tang that was added via #9887
It should overall increase the usefulness of this feature for more realistic partitioning schemes,
and address some bugs that prevent this feature from working on Ubuntu.
Copy of the Commit Message Describing the Changes
Often there is more than a single disk that gets encrypted during installation. When multiple disks are available and
autopart
is used in the kickstart config, all disks get encrypted and put into a volume group on which a logical volume for the root partition is created. Another example is when users add a separate disk for directories like /var to separate application data. This means we need to recursively resolve all underlying encrypted volumes, not just for the root partition. To identify these, we take all entries from /etc/crypttab, which should catch all block devices that were encrypted in the installation process.As this feature should also work for Ubuntu, we also address some bugs with the Ubuntu support: