-
Notifications
You must be signed in to change notification settings - Fork 9
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
feat: Add MountPoint option to AdditionalVolumes #254
Merged
Merged
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
Callisto13
force-pushed
the
module-mounts
branch
from
January 6, 2023 15:16
60455eb
to
f2e4ed6
Compare
13 tasks
Callisto13
force-pushed
the
module-mounts
branch
2 times, most recently
from
January 10, 2023 13:36
5f06488
to
0409290
Compare
Callisto13
changed the title
feat: Include kernel modules as AdditionalVolumes
feat: Add MountPoint option to AdditionalVolumes
Jan 10, 2023
Validated cluster can start with this config: rootVolume:
id: root
image: "docker.io/claudiaberesford/capmvm-k8s-os:1.23.5"
kernel:
filename: "boot/vmlinux"
image: "docker.io/claudiaberesford/kernel-bin:5.10.77"
volumes:
- id: modules
image: "docker.io/claudiaberesford/kernel-modules:5.10.77"
mountPoint: /lib/modules/5.10.77 |
yitsushi
previously approved these changes
Jan 12, 2023
Callisto13
force-pushed
the
module-mounts
branch
from
January 12, 2023 12:32
0409290
to
a676deb
Compare
sorry @yitsushi i saw a mistake :p |
Callisto13
force-pushed
the
module-mounts
branch
from
January 12, 2023 12:35
a676deb
to
5ba7cef
Compare
yitsushi
previously approved these changes
Jan 12, 2023
richardcase
previously approved these changes
Jan 12, 2023
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.
Nice 🧙♀️
And update templates to use a dedicated binary image for `kernel.image` and an additional volume to provide the modules. In line with changes to our image-builder pipeline, which removes the embedded kernel modules from the OS image, this feature adds an option to include modules as an additional volume. Old images will remain available to not break those using earlier versions.
Callisto13
force-pushed
the
module-mounts
branch
from
January 13, 2023 16:59
5ba7cef
to
a6d5124
Compare
yitsushi
approved these changes
Jan 16, 2023
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.
And update templates to use a dedicated binary image for
kernel.image
and an additional volume to provide the modules.
In line with changes to our image-builder pipeline, which removes the
embedded kernel modules from the OS image, this feature adds an option
to include modules as an additional volume.
Old images will remain available to not break those using
earlier versions.
Part of liquidmetal-dev/image-builder#49