From: "'Jan Kiszka' via isar-users" <isar-users@googlegroups.com>
To: "Niedermayr,
Benedikt (T CED OES-DE)" <benedikt.niedermayr@siemens.com>,
"isar-users@googlegroups.com" <isar-users@googlegroups.com>
Cc: "Cirujano Cuesta,
Silvano (T CED OES-DE)" <silvano.cirujano-cuesta@siemens.com>,
"Moessbauer, Felix (T CED OES-DE)" <felix.moessbauer@siemens.com>
Subject: Re: [PATCH v2 5/5] doc: Describe how to use the container fetcher and loader
Date: Tue, 16 Jul 2024 14:58:06 +0200 [thread overview]
Message-ID: <59cea3be-00ec-4e8f-a3e8-d16212009e3a@siemens.com> (raw)
In-Reply-To: <dff2cc09aeee839c613a9d081d63d10553967ccc.camel@siemens.com>
On 16.07.24 14:56, Niedermayr, Benedikt (T CED OES-DE) wrote:
> On Mon, 2024-07-15 at 12:08 +0200, Jan Kiszka wrote:
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>> doc/user_manual.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 60 insertions(+)
>>
>> diff --git a/doc/user_manual.md b/doc/user_manual.md
>> index 776ae52c..733b2b30 100644
>> --- a/doc/user_manual.md
>> +++ b/doc/user_manual.md
>> @@ -1519,3 +1519,63 @@ SBUILD_CHROOT_PREINSTALL_EXTRA += "<base packages>"
>>
>> Then, in the dpkg recipe of your package, simply set `SBUILD_FLAVOR = "<your flavor>"`.
>> To install additional packages into the sbuild chroot, add them to
>> `SBUILD_CHROOT_PREINSTALL_EXTRA`.
>> +
>> +## Pre-install container images
>> +
>> +If an isar-generated image shall provides a container runtime, it may also be
>
> If an isar-generated image shall provide a container runtime...
>
>> +desirable to pre-install container images to avoid having to download them on
>> +first boot or because they may not be accessible outside of the build
>> +environment. Isar supports this scenario via two services, a container fetcher
>> +and a container loader.
>> +
>> +### Bitbake fetcher for containers
>> +
>> +The bitbake fetching protocol "docker://" allows to download pre-built images
>> +from container registries. The URL consists of the image path, followed by
>> +a recommened digests in the form `digest=sha256:<sha256sum>` and an optional
> a recommended...
>
>> +tag in the form `tag=<tag>`. A digest is preferred over a tag to identify the
>> +an when fetching as it also allows to validate its integrity. If tag is not
> ... to indentify the ?an? when fetching...
>
>> +specified, `latest` is used as tag name.
>> +
>> +When specifying a multi-arch image, the fetcher will download the images for
>> +all available architectures. If this is not desired, directly specify the
>> +digest of the desired architecture manifest instead of that the manifest list.
>> +
>> +The fetched container image are stored in a directory in the `WORKDIR` of the
>> +requesting recipe. When a multi-arch image was specified, only the image
>> +matching `PACKAGE_ARCH` will be stored. The name of the image directory is
>> +derived from the container image name, replacing all `/` with `.`.
>> +
>> +### Container loader helpers
>> +
>> +To create a Debian package which can carry container images and load them into
>> +local storage of docker or podman, there is a set of helpers available. To use
>> +them into an own recipe, add
>> +`require recipes-support/container-loader/docker-loader.inc` when using docker
>> +and `require recipes-support/container-loader/podman-loader.inc` when using
>> +podman. The loader will try to transfer the packaged image into the container
>> +runtime storage on boot, but only if no container image of the same name and
>> +tag is present already.
>> +
>> +Unless `CONTAINER_DELETE_AFTER_LOAD` is set to `1`, the source container images
>> +remain by default available and may be used again for loading the storage after
>> +it may have been emptied later on (factory reset).
>> +
>> +Source container images may either be fetched as binaries from a registry, see
>> +above, or built via isar as well.
>> +
>> +### Example
>> +
>> +This creates debian package with will download, package and then load the
>> +`debian:bookworm-20240701-slim` container image into the docker container
>> +storage. The package will depend on `docker.io`, thus ensure that that basic
>> +runtime services are installed on the target as well. The packaged image will
>> +be deleted from the target device's rootfs after successful import.
>> +
>> +```
>> +require recipes-support/container-loader/docker-loader.inc
>> +
>> +CONTAINER_DELETE_AFTER_LOAD = "1"
>> +
>> +SRC_URI +=
>> "docker://debian;digest=sha256:f528891ab1aa484bf7233dbcc84f3c806c3e427571d75510a9d74bb5ec535b33;ta
>> g=bookworm-20240701-slim"
>> +```
>
> Benedikt
>
Thanks for actually reading it :). Update will follow.
Jan
--
Siemens AG, Technology
Linux Expert Center
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/isar-users/59cea3be-00ec-4e8f-a3e8-d16212009e3a%40siemens.com.
next prev parent reply other threads:[~2024-07-16 12:58 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-15 10:08 [PATCH v2 0/5] Introduce container fetcher and pre-loader 'Jan Kiszka' via isar-users
2024-07-15 10:08 ` [PATCH v2 1/5] Introduce fetcher from container registries 'Jan Kiszka' via isar-users
2024-07-15 10:08 ` [PATCH v2 2/5] container-loader: Introduce helper to load container images into local registry 'Jan Kiszka' via isar-users
2024-07-15 10:08 ` [PATCH v2 3/5] meta-isar: Add demo packages for installing prebuilt containers 'Jan Kiszka' via isar-users
2024-07-15 10:08 ` [PATCH v2 4/5] ci: Add test cases for container fetching and loading 'Jan Kiszka' via isar-users
2024-07-15 10:08 ` [PATCH v2 5/5] doc: Describe how to use the container fetcher and loader 'Jan Kiszka' via isar-users
2024-07-16 12:56 ` 'Niedermayr, BENEDIKT' via isar-users
2024-07-16 12:58 ` 'Jan Kiszka' via isar-users [this message]
2024-07-16 13:42 ` 'Schmidt, Adriaan' via isar-users
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=59cea3be-00ec-4e8f-a3e8-d16212009e3a@siemens.com \
--to=isar-users@googlegroups.com \
--cc=benedikt.niedermayr@siemens.com \
--cc=felix.moessbauer@siemens.com \
--cc=jan.kiszka@siemens.com \
--cc=silvano.cirujano-cuesta@siemens.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox