Skip to content
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

Compressed image docs #340

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

* [#319](https://github.com/suse-edge/edge-image-builder/issues/319) - Combustion fails when combustion directory content is larger than half of the RAM of the system
* [#233](https://github.com/suse-edge/edge-image-builder/issues/233) - Use different Helm chart sources for development and production builds
* [#95](https://github.com/suse-edge/edge-image-builder/issues/95) - Compressed images are not supported

---

Expand Down
4 changes: 2 additions & 2 deletions docs/building-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ image:
* `apiVersion` - Indicates the version of the definition file schema for EIB to expect
* `imageType` - Must be either `iso` or `raw`.
* `arch` - Must be either `x86_64` or `aarch64`.
* `baseImage` - Indicates the name of the image file used as the base for the built image. This file must be located
under the `images` directory of the image configuration directory (see below for more information). This image will
* `baseImage` - Indicates the name of the image file used as the base for the built image. Base image files must be uncompressed. This file must be located
under the `base-images` directory of the image configuration directory (see below for more information). This image will
**not** directly be modified by EIB; a new image will be created each time EIB is run.
* `outputImageName` - Indicates the name of the image that EIB will build. This may only be a filename; the image will
be written to the root of the image configuration directory.
Expand Down
Loading