-
Notifications
You must be signed in to change notification settings - Fork 171
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
osbuild: re-arrange manifests; tweak runvm-osbuild #3734
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b5bafa5
osbuild: move manifests into a subdirectory
dustymabe 915e0bc
runvm-osbuild: make ostree_repo and ostree_ref optional inputs
dustymabe 77cd7a8
osbuild: add hyperv platform artifact definition file
dustymabe 4a49290
osbuild: add applehv platform artifact definition file
dustymabe 276ae81
osbuild: add a stub manifest for qemu
dustymabe 62517c2
src/runvm-osbuild: make loop-control conditional
dustymabe f51455b
src/runvm-osbuild: use a temp file for the processed json
dustymabe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This file isn't yet being used today but holds an OSBuild image | ||
# definition for the applehv platform. | ||
version: '2' | ||
pipelines: | ||
- name: raw-applehv-image | ||
stages: | ||
- type: org.osbuild.copy | ||
inputs: | ||
tree: | ||
type: org.osbuild.tree | ||
origin: org.osbuild.pipeline | ||
references: | ||
- name:raw-image | ||
options: | ||
paths: | ||
- from: input://tree/disk.img | ||
to: tree:///disk.img | ||
# Increase the size to the cloud image size | ||
- type: org.osbuild.truncate | ||
options: | ||
filename: disk.img | ||
size: | ||
mpp-format-string: "{cloud_image_size_mb * 1024 * 1024}" | ||
- type: org.osbuild.kernel-cmdline.bls-append | ||
options: | ||
bootpath: mount:/// | ||
kernel_opts: | ||
- ignition.platform.id=applehv | ||
devices: | ||
boot: | ||
type: org.osbuild.loopback | ||
options: | ||
filename: disk.img | ||
start: | ||
mpp-format-int: '{image.layout[''boot''].start}' | ||
size: | ||
mpp-format-int: '{image.layout[''boot''].size}' | ||
mounts: | ||
- name: boot | ||
type: org.osbuild.ext4 | ||
source: boot | ||
target: / | ||
- name: applehv | ||
stages: | ||
- type: org.osbuild.copy | ||
inputs: | ||
tree: | ||
type: org.osbuild.tree | ||
origin: org.osbuild.pipeline | ||
references: | ||
- name:raw-applehv-image | ||
options: | ||
paths: | ||
- from: input://tree/disk.img | ||
to: | ||
mpp-format-string: 'tree:///{filename}' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# This file isn't yet being used today but holds an OSBuild image | ||
# definition for the hyperv platform. | ||
version: '2' | ||
pipelines: | ||
- name: raw-hyperv-image | ||
stages: | ||
- type: org.osbuild.copy | ||
inputs: | ||
tree: | ||
type: org.osbuild.tree | ||
origin: org.osbuild.pipeline | ||
references: | ||
- name:raw-image | ||
options: | ||
paths: | ||
- from: input://tree/disk.img | ||
to: tree:///disk.img | ||
# Increase the size to the cloud image size | ||
- type: org.osbuild.truncate | ||
options: | ||
filename: disk.img | ||
size: | ||
mpp-format-string: "{cloud_image_size_mb * 1024 * 1024}" | ||
- type: org.osbuild.kernel-cmdline.bls-append | ||
options: | ||
bootpath: mount:/// | ||
kernel_opts: | ||
- ignition.platform.id=hyperv | ||
devices: | ||
boot: | ||
type: org.osbuild.loopback | ||
options: | ||
filename: disk.img | ||
start: | ||
mpp-format-int: '{image.layout[''boot''].start}' | ||
size: | ||
mpp-format-int: '{image.layout[''boot''].size}' | ||
mounts: | ||
- name: boot | ||
type: org.osbuild.ext4 | ||
source: boot | ||
target: / | ||
- name: hyperv | ||
stages: | ||
- type: org.osbuild.qemu | ||
inputs: | ||
image: | ||
type: org.osbuild.files | ||
origin: org.osbuild.pipeline | ||
references: | ||
name:raw-hyperv-image: | ||
file: disk.img | ||
options: | ||
filename: | ||
mpp-format-string: '{filename}' | ||
format: | ||
type: vhdx |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# This file isn't used today but will hold the OSBuild image | ||
# defintion for the qemu platform in the future. |
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
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.
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.
Comments at the top of these new files would be helpful since as you said we're not actually planning to use these ourselves.
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.
done
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.
Sorry, I meant mentioning the podman use case here, but not worth another respin!