Artifact Naming Convention
There are many different artifacts that Kairos produces. In this page we try to summarize them all and have a clear naming convention for them.
Info
Architecture names are based on the Go architecture names, soamd64
is used instead of x86_64
, 386
instead of i386
and arm64
instead of aarch64
.
Images
OS images are stored in GitHub Releases, so the name of the artifact includes all the information about the image. The only exception is when the image is too big to be stored in GitHub Releases, in that case the image is stored in Quay.io.
The format of the name is the following:
kairos-<flavor>-<flavor_release>-<variant>-<arch>-<device>-<version>.<extension>
Where:
<flavor>
: Underlying Linux distribution e.g.ubuntu
,debian
,fedora
,alpine
, etc<flavor_release>
: The version of the above distribution e.g.23.04
for Ubuntu<variant>
:core
orstandard
<arch>
:amd64
orarm64
<device>
: either the specific device name, e.g.rpi4
orgeneric
for generic images<version>
: the version of Kairos e.g.v1.0.0
for Core, and can also include the K3S version e.g.v1.0.0-k3s1
for Standard<extension>
:iso
,squashfs
,ipxe
Examples
kairos-ubuntu-23.04-core-amd64-generic-v3.0.6
kairos-ubuntu-23.04-standard-arm64-rpi4-v3.0.6-k3sv1.28.2+k3s1.iso
Kernel and RAM Disk Images
Kernel and RAM Disk images are stored in GitHub Releases and follow a similar convention to images, but they have no extension:
kairos-<flavor>-<flavor_release>-<variant>-<arch>-<device>-<version>-<type>
Where:
<type>
:kernel
orinitrd
Examples
kairos-ubuntu-23.04-core-amd64-generic-v3.0.6-kernel
kairos-ubuntu-23.04-standard-arm64-rpi4-v3.0.6-k3sv1.28.2+k3s1-initrd
iPXE Images
For iPXE we deliver three types of artifacts. The first one is the iPXE script, with the ipxe extension, and the other two are iPXE bootable images, with the iso and img extensions.
Examples
kairos-ubuntu-23.04-core-amd64-generic-v3.0.6.ipxe
kairos-ubuntu-23.04-core-amd64-generic-v3.0.6-ipxe.iso
kairos-ubuntu-23.04-core-amd64-generic-v3.0.6-ipxe-usb.img
Reports
Reports are also stored in GitHub Releases and follow a similar convention to images, but they include the name of the report:
kairos-<flavor>-<flavor_release>-<variant>-<arch>-<device>-<version>-<report>.<extension>
Where:
<report>
:trivy
,sbom
,grype
, etc
Examples
kairos-alpine-3.18-core-arm64-generic-v3.0.6-trivy.sarif
kairos-alpine-3.18-core-arm64-generic-v3.0.6-grype.json
Container Images
Container images are stored in Quay.io and follow the following convention:
quay.io/kairos/<flavor>:<flavor_release>-<variant>-<arch>-<device>-<version>
This nomenclature for container images lacks some information for the following reasons:
- All version information (kairos, k3s, etc) is in the tag. This makes it easier to publish new versions under the same container repository.
- The name Kairos is already part of the repository name, so it is not included in the image name.
Examples
quay.io/kairos/opensuse:leap-15.5-core-amd64-generic-v3.0.6
IMG Images
As mentioned before, some images are too big to be delivered via GitHub Releases, so they are stored in Quay.io. At the moment this is only for arm .img
images.
The convention is the following:
quay.io/kairos/<flavor>:<flavor_release>-<variant>-<arch>-<device>-<version>-img
Examples
quay.io/kairos/opensuse:leap-15.5-core-arm64-rpi4-v3.0.6-img
Framework images
There are 2 framework flavors currently, generic
and fips
, the latter builds Kairos packages in compliance with FIPS.
All different framework flavors are stored in the same image, so the details are included in the tag. The name is simplified since not all attributes apply for framework images.
quay.io/kairos/framework:<version>[-fips]
Examples
quay.io/kairos/framework:v2.7.28
quay.io/kairos/framework:v2.7.28-fips
quay.io/kairos/framework:main
quay.io/kairos/framework:main-fips
quay.io/kairos/framework:latest
quay.io/kairos/framework:latest-fips
Binaries
<name>-<version>-<os>-<arch>.<extension>
Where:
<name>
: the name of the binary e.g.kairosctl
,kairos-agent
,provider-kairos
, etc<version>
: the version of the binary e.g.v1.0.0
<os>
:Linux
,Windows
,Darwin
, etc<arch>
:amd64
,arm64
,386
, etc<extension>
:tar.gz
,zip
, etc
Examples
- kairosctl-v2.3.0-Linux-386.tar.gz
- provider-kairos-2.3.0-Windows-amd64.tar.gz
- kairos-agent-v2.1.10-Linux-arm64.tar.gz
Feedback
Was this page helpful?
Awesome! Glad to hear it! Please tell us how we can improve.
Oh snap! Sorry to hear that. Please tell us how we can improve.