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

✨ Enable secureboot for all flavors (minus alpine) #2140

Merged
merged 5 commits into from
Jan 16, 2024
Merged

Conversation

Itxaka
Copy link
Member

@Itxaka Itxaka commented Jan 11, 2024

This PR brings new deps, bumps builders and agent to bring secureboot in all flavors but alpine (more ont hat below)

Currently to enable secureboot in a given X flavor we need to make sure to use the artifacts from that falvor specifically as they are all signed with the distro owner key, so the chain of validation works as expected.

shim (dual signed Microsoft and distro owner) -> grub (distro owner signed) -> kernel (distro owner signed)

So unless there comes a time where the shim is signed by Microsoft and ALL the distro owners (so you can chainload all grubs and kernel signed by all of them) we need to specifically use the distro artifacts so the signatures match.

This PR brings a new enki version(inside osbuilder) which builds the iso using the specifci distro artifacts (instead of generic ones as we used to do).

It also makes sure that all distros include the grub and shim signed artifacts in the base images.

Also brings a new framework that drops the generic grub artifacts (not used) and it also brings a new agent that uses those new artifacts during installation instead of the generic ones.

Unfortunately Alpine does not provide signed artifacts so SecureBoot is not supported under Alpine until they provide those. We still use our generic artifacts to enable uefi support for Alpine

What this PR does / why we need it:

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
Fixes #

@Itxaka Itxaka requested a review from a team January 11, 2024 13:08
@Itxaka
Copy link
Member Author

Itxaka commented Jan 11, 2024

leap 15.5:

  • boots with secureboot
  • installs with secureboot
  • no regexp module in the grub directly so cmdline is NOT correct. we need to ship the module during install and insmod it

Fedora 38:

  • boots with secureboot
  • installs with secureboot
  • regexp modules is bundled in grub

@Itxaka
Copy link
Member Author

Itxaka commented Jan 11, 2024

Debian bookworm:

  • boots with secureboot
  • installs with secureboot
  • regexp bundled with grub

Ubuntu 23.10(probably the rest):

  • NOT boot with secureboot(incorrect naming, grub is stored as grubx64.efi but its looking for grub.efi)
    image

@Itxaka
Copy link
Member Author

Itxaka commented Jan 12, 2024

looks like on ubuntu is failing to find the actual shim and using the fallback so that is why it cant find the proper named thingie. So it may be a package missing

                +iso | INFO[2024-01-12T08:51:42Z] Creating EFI image...                        
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/usr/share/efi/x86_64/shim.efi: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/usr/lib/shim/shimx64.efi.signed: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/boot/efi/EFI/fedora/shim.efi: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/boot/efi/EFI/rocky/shim.efi: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/boot/efi/EFI/redhat/shim.efi: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] skip copying /tmp/enki-iso683099797/rootfs/boot/efi/EFI/almalinux/shim.efi: not found 
                +iso | DEBU[2024-01-12T08:51:42Z] Using fallback shim file /efi/EFI/BOOT/bootx64.efi 

@Itxaka
Copy link
Member Author

Itxaka commented Jan 12, 2024

yeah and the root problem is:

  • shimx64.signed is a link to the alternatives as you can have newer shims lrwxrwxrwx 1 root root 36 Apr 16 2020 shimx64.efi.signed -> /etc/alternatives/shimx64.efi.signed
  • in our rootfs alternatives is not installed so you get an empty link
  • testing in a normal image properly links the file

So the solution is to try and pick the shimx64.efi.signed.latest file instead or even better, they have a dualsigned one shimx64.efi.dualsigned signed by them AND microsoft, so thats even better.

@Itxaka
Copy link
Member Author

Itxaka commented Jan 12, 2024

Using fix kairos-io/enki#25 resutls in proper isos with secureboot for all distros (minus alpine)
Installs correctly for all distros
leap/opensuse still missing the regexp module bundled, will need to check further

@Itxaka
Copy link
Member Author

Itxaka commented Jan 12, 2024

with that merged and pacakge bumped, the only missing fix is for agent:

  • On ubuntu install copy the grub.cfg under /EFI/ubungu/grub.cfg
  • On opensuse install, copy the regexp module for grub (check the proper paths where its copied)

The default grub config already does an insmod regexp so either is not being copied properly or its missing from the sources or its just on a wrong path.

Earthfile Show resolved Hide resolved
Earthfile Show resolved Hide resolved
@Itxaka
Copy link
Member Author

Itxaka commented Jan 12, 2024

kairos-io/kairos-agent#203 fixes ubuntu boot.

Copy link
Member

@mauromorales mauromorales left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!

This PR brings new deps, bumps builders and agent to bring secureboot in
all flavors but alpine (more ont hat below)

Currently to enable secureboot in a given X flavor we need to make sure
to use the artifacts from that falvor specifically as they are all
signed with the distro owner key, so the chain of validation works as
expected.

shim (dual signed Microsoft and distro owner) -> grub (distro owner
signed) -> kernel (distro owner signed)

So unless there comes a time where the shim is signed by Microsoft and
ALL the distro owners (so you can chainload all grubs and kernel signed
by all of them) we need to specifically use the distro artifacts so the
signatures match.

This PR brings a new enki version(inside osbuilder) which builds the iso
using the specifci distro artifacts (instead of generic ones as we used
to do).

It also makes sure that all distros include the grub and shim signed
artifacts in the base images.

Also brings a new framework that drops the generic grub artifacts (not
used) and it also brings a new agent that uses those new artifacts
during installation instead of the generic ones.

Unfortunately Alpine does not provide signed artifacts so SecureBoot is
not supported under Alpine until they provide those. We still use our
generic artifacts to enable uefi support for Alpine

Signed-off-by: Itxaka <itxaka@kairos.io>
Signed-off-by: Itxaka <itxaka@kairos.io>
@Itxaka
Copy link
Member Author

Itxaka commented Jan 15, 2024

latest fixes should fix:

@Itxaka
Copy link
Member Author

Itxaka commented Jan 15, 2024

both fixes deployed via framework 2.6.3, needs manual QA

Signed-off-by: Itxaka <itxaka@kairos.io>
Signed-off-by: Itxaka <itxaka@kairos.io>
Signed-off-by: Itxaka <itxaka@kairos.io>
@Itxaka Itxaka merged commit dd5ea87 into master Jan 16, 2024
36 checks passed
@Itxaka Itxaka deleted the efi_secureboot branch January 16, 2024 13:27
@mudler mudler linked an issue Jan 17, 2024 that may be closed by this pull request
robarnold pushed a commit to marinatedconcrete/config that referenced this pull request May 20, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [kairos-io/kairos](https://togithub.com/kairos-io/kairos) | major |
`v2.5.0` -> `v3.0.11` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>kairos-io/kairos (kairos-io/kairos)</summary>

###
[`v3.0.11`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.11)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.10...v3.0.11)

**Full Changelog**:
kairos-io/kairos@v3.0.10...v3.0.11

###
[`v3.0.10`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.10)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.9...v3.0.10)

#### Updated

-   Bumps framework to v2.7.32
-   Bumps kairos-agent to v2.8.14 (part of the framework)

#### Fixes

- Prevent unwanted yaml fields to be marshalled: Fixes some step
duplication when triggering the install via events like providers do
- Avoid adding an extra line to os-release output: We were adding an
extra line at the end of the os-release file, which some software had
problems dealing with

#### Improvements

- `kairos-agent state` will now show SecureBoot state of the node
(on/off)
- `kairos-agent state` will now show the common name of the EFI
certificates in the node if any
- `kairos-agent state` will now show a list of encrypted partitions by
label and by device if any


![image](https://togithub.com/kairos-io/kairos/assets/1447686/d2059be4-1d9c-483e-9d89-0a6235e74e00)

**Full Changelog**:
kairos-io/kairos@v3.0.9...v3.0.10

###
[`v3.0.9`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.9)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.8...v3.0.9)

- 🐛 Fix broken pipeline for arm rpi Tumbleweed (caused by Python
package being much bigger) by
[@&#8203;mauromorales](https://togithub.com/mauromorales)
[kairos-io/kairos#2524
- 🐛 Move nfs-utils to common build target in opensuse flavor by
[@&#8203;kaiehrhardt](https://togithub.com/kaiehrhardt)
[kairos-io/kairos#2495
- 🐛 UKI custom mounts breaking the cos-layout file by
[@&#8203;kreeuwijk](https://togithub.com/kreeuwijk)
[kairos-io/packages#839
(actual fix) release fix
([c95475c](https://togithub.com/kairos-io/kairos/pull/2524/commits/c95475c3e45c266c5cf9fc1ca2c96d446432dad4))
- ✨ Ubuntu 24.04 artifacts by
[@&#8203;mauromorales](https://togithub.com/mauromorales)
[#&#8203;2527](https://togithub.com/kairos-io/kairos/issues/2527)

**Full Changelog**:
kairos-io/kairos@v3.0.8...v3.0.9

###
[`v3.0.8`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.8)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.7...v3.0.8)

Backported fixes for agent:

- Bumps yip for duplicated name of steps (was causing unexpected issues
with users sometimes) Issue:
[kairos-io/kairos#2488

#### Updated packages

|Category|Name|Old version|New Version|
|--|--|--|--|

|fips|kairos-agent|[v2.8.12](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.12)|[v2.8.13](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.13)|

|system|kairos-agent|[v2.8.12](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.12)|[v2.8.13](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.13)|

***

**Full Changelog**:
kairos-io/kairos@v3.0.7...v3.0.8

###
[`v3.0.7`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.7)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.6...v3.0.7)

Backported fixes for agent and immucore:

-   Bumps yip for user id reuse
-   Adds sync calls before and after mounting
-   \[UKI] Fixes hooks in uki install
-   \[UKI] Fixes mounting oem before running rootfs stage under uki

#### Updated packages

|Category|Name|Old version|New Version|
|--|--|--|--|

|fips|kairos-agent|[v2.8.11](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.11)|[v2.8.12](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.12)|

|system|kairos-agent|[v2.8.11](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.11)|[v2.8.12](https://togithub.com/kairos-io/kairos-agent/releases/tag/v2.8.12)|

|system|immucore|[v0.1.25](https://togithub.com/kairos-io/immucore/releases/tag/v0.1.25)|[v0.1.26](https://togithub.com/kairos-io/immucore/releases/tag/v0.1.26)|

|fips|immucore|[v0.1.25](https://togithub.com/kairos-io/immucore/releases/tag/v0.1.25)|[v0.1.26](https://togithub.com/kairos-io/immucore/releases/tag/v0.1.26)|

***

**Full Changelog**:
kairos-io/kairos@v3.0.6...v3.0.7

###
[`v3.0.6`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.6)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.5...v3.0.6)

#### What's Changed

- fix(orin): disable ISCSI in the initramfs generation by
[@&#8203;mudler](https://togithub.com/mudler) in
[kairos-io/kairos#2476

**Full Changelog**:
kairos-io/kairos@v3.0.5...v3.0.6

###
[`v3.0.5`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.5)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.4...v3.0.5)

**Full Changelog**:
kairos-io/kairos@v3.0.4...v3.0.5

###
[`v3.0.4`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.4)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.3...v3.0.4)

#### ⚠️ Known issues

🐛 Raspberry: EFI booting no longer supported on kernels shipped with
ubuntu > 22.04
[kairos-io/kairos#2249

We haven't been able to address the following issues on Alpine:
:bug: It's not possible to login on an Alpine 3.18 RPi
[#&#8203;2439](https://togithub.com/kairos-io/kairos/issues/2439)
🐛 Filesystem expansion on rpi4 doesn't work with Alpine
[kairos-io/kairos#1995
🐛 cgroup_memory not mounted in Alpine rpi4
[kairos-io/kairos#2002
🐛 Upgrade on alpine arm errors
[kairos-io/kairos#2135
🐛 reset from the GRUB menu on alpine, gets stuck in an endless loop
[kairos-io/kairos#2136

Deprecation warnings:

Reading of `/etc/elemental/config.yaml` is working again but will be
deprecated in favor of `/etc/kairos/config.yaml`

#### What's Changed

- Fix Reboot hangs for UKI images
[#&#8203;2384](https://togithub.com/kairos-io/kairos/issues/2384) by
[@&#8203;Itxaka](https://togithub.com/Itxaka)
- Remove snap from Ubuntu based images by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2415

**Full Changelog**:
kairos-io/kairos@v3.0.3...v3.0.4

###
[`v3.0.3`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.3)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.2...v3.0.3)

#### ⚠️ Known issues

🐛 Raspberry: EFI booting no longer supported on kernels shipped with
ubuntu > 22.04
[kairos-io/kairos#2249

We haven't been able to address the following issues on Alpine:
:bug: It's not possible to login on an Alpine 3.18 RPi
[#&#8203;2439](https://togithub.com/kairos-io/kairos/issues/2439)
🐛 Filesystem expansion on rpi4 doesn't work with Alpine
[kairos-io/kairos#1995
🐛 cgroup_memory not mounted in Alpine rpi4
[kairos-io/kairos#2002
🐛 Upgrade on alpine arm errors
[kairos-io/kairos#2135
🐛 reset from the GRUB menu on alpine, gets stuck in an endless loop
[kairos-io/kairos#2136

Deprecation warnings:

Reading of `/etc/elemental/config.yaml` is working again but will be
deprecated in favor of `/etc/kairos/config.yaml`

#### What's Changed

- Fixes issue with the `bootentry` command in the agent when dealing
with UKI by [@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2410

**Full Changelog**:
kairos-io/kairos@v3.0.2...v3.0.3

###
[`v3.0.2`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.2)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.1...v3.0.2)

> \[!CAUTION]
> NOTE: The OpenSUSE Tumbleweed flavor of this release was affected by
the xz backdoor (https://nvd.nist.gov/vuln/detail/CVE-2024-3094). For
this reason all affected artifacts have been removed, both from quay.io
(container images) and from GitHub. If you used the Tumbleweed artifacts
of Kairos `3.0.1` or `3.0.2` you should immediately stop the affected
machines and re-install a version which is not affected. If those
systems were exposed to the internet (if ssh was possible) and they
included passwords or keys, it's advised that you rotate those
credentials.
>
> Read more:
>
> -   https://news.opensuse.org/2024/03/29/xz-backdoor/
> -
https://arstechnica.com/security/2024/04/what-we-know-about-the-xz-utils-backdoor-that-almost-infected-the-world/

#### ⚠️ Known issues

🐛 Raspberry: EFI booting no longer supported on kernels shipped with
ubuntu > 22.04
[kairos-io/kairos#2249

We haven't been able to address the following issues on Alpine:
:bug: It's not possible to login on an Alpine 3.18 RPi
[#&#8203;2439](https://togithub.com/kairos-io/kairos/issues/2439)
🐛 Filesystem expansion on rpi4 doesn't work with Alpine
[kairos-io/kairos#1995
🐛 cgroup_memory not mounted in Alpine rpi4
[kairos-io/kairos#2002
🐛 Upgrade on alpine arm errors
[kairos-io/kairos#2135
🐛 reset from the GRUB menu on alpine, gets stuck in an endless loop
[kairos-io/kairos#2136

Deprecation warnings:

Reading of `/etc/elemental/config.yaml` is working again but will be
deprecated in favor of `/etc/kairos/config.yaml`

#### What's Changed

- 🤖 Run fedora and ubuntu uki tests by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2366
- Replace a full test with a line in another test by
[@&#8203;jimmykarily](https://togithub.com/jimmykarily) in
[kairos-io/kairos#2368
- Reduce fedora uki image size by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2365
- chore(deps): update earthly/earthly docker tag to v0.8.6 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2359
- 🤖 Allow manual testing of branches for uki jobs by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2373
- Do installation of kernel at the end of dockerfile by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2374
- chore(deps): update quay.io/kairos/osbuilder-tools docker tag to
v0.200.8 by [@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2382
- fix(deps): update module github.com/kairos-io/kairos-sdk to v0.0.27 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2383
- chore(deps): update dependency kairos-io/kairos-framework to v2.7.19
by [@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2391
- Test that after-reset is run when in UKI mode by
[@&#8203;jimmykarily](https://togithub.com/jimmykarily) in
[kairos-io/kairos#2331
- 🤖 Bump osbuilder and drop keys by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2381
- fix(deps): update module github.com/kairos-io/kairos-sdk to v0.0.28 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2394
- bump framework image by [@&#8203;mudler](https://togithub.com/mudler)
in
[kairos-io/kairos#2407

**Full Changelog**:
kairos-io/kairos@v3.0.1...v3.0.2

###
[`v3.0.1`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.1)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v3.0.0...v3.0.1)

> \[!CAUTION]
> NOTE: The OpenSUSE Tumbleweed flavor of this release was affected by
the xz backdoor (https://nvd.nist.gov/vuln/detail/CVE-2024-3094). For
this reason all affected artifacts have been removed, both from quay.io
(container images) and from GitHub. If you used the Tumbleweed artifacts
of Kairos `3.0.1` or `3.0.2` you should immediately stop the affected
machines and re-install a version which is not affected. If those
systems were exposed to the internet (if ssh was possible) and they
included passwords or keys, it's advised that you rotate those
credentials.
>
> Read more:
>
> -   https://news.opensuse.org/2024/03/29/xz-backdoor/
> -
https://arstechnica.com/security/2024/04/what-we-know-about-the-xz-utils-backdoor-that-almost-infected-the-world/

#### ⚠️ Known issues

🐛 Raspberry: EFI booting no longer supported on kernels shipped with
ubuntu > 22.04
[kairos-io/kairos#2249

We haven't been able to address the following issues on Alpine:
:bug: It's not possible to login on an Alpine 3.18 RPi
[#&#8203;2439](https://togithub.com/kairos-io/kairos/issues/2439)
🐛 Filesystem expansion on rpi4 doesn't work with Alpine
[kairos-io/kairos#1995
🐛 cgroup_memory not mounted in Alpine rpi4
[kairos-io/kairos#2002
🐛 Upgrade on alpine arm errors
[kairos-io/kairos#2135
🐛 reset from the GRUB menu on alpine, gets stuck in an endless loop
[kairos-io/kairos#2136

Deprecation warnings:

Reading of `/etc/elemental/config.yaml` is working again but will be
deprecated in favor of `/etc/kairos/config.yaml`

#### What's Changed

- Add docs versioning item in the template by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2317
- Update earthly/earthly Docker tag to v0.8.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2333
- Install nohang from source for ubuntu by
[@&#8203;liyimeng](https://togithub.com/liyimeng) in
[kairos-io/kairos#2318
- Update softprops/action-gh-release digest to
[`9d7c94c`](https://togithub.com/kairos-io/kairos/commit/9d7c94c) by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2320
- Update koalaman/shellcheck-alpine Docker tag to v0.10.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2321
- Update quay.io/kairos/osbuilder-tools Docker tag to v0.200.6 -
autoclosed by [@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2339
- Update dependency kairos-io/kairos-framework to v2.7.15 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2344
- Move nfs-common to common build target in ubuntu flavor by
[@&#8203;kaiehrhardt](https://togithub.com/kaiehrhardt) in
[kairos-io/kairos#2340
- chore(deps): update quay.io/kairos/osbuilder-tools docker tag to
v0.200.7 by [@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2350
- chore(deps): update quay.io/luet/base docker tag to v0.35.1 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kairos-io/kairos#2352
- Bump framework to v2.7.17 by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2357

#### New Contributors

- [@&#8203;liyimeng](https://togithub.com/liyimeng) made their first
contribution in
[kairos-io/kairos#2318
- [@&#8203;kaiehrhardt](https://togithub.com/kaiehrhardt) made their
first contribution in
[kairos-io/kairos#2340

**Full Changelog**:
kairos-io/kairos@v3.0.0...v3.0.1

###
[`v3.0.0`](https://togithub.com/kairos-io/kairos/releases/tag/v3.0.0)

[Compare
Source](https://togithub.com/kairos-io/kairos/compare/v2.5.0...v3.0.0)

#### ⚠️ Known issues

🐛 Raspberry: EFI booting no longer supported on kernels shipped with
ubuntu > 22.04
[kairos-io/kairos#2249

We haven't been able to address the following issues on Alpine:
🐛 Filesystem expansion on rpi4 doesn't work with Alpine
[kairos-io/kairos#1995
🐛 cgroup_memory not mounted in Alpine rpi4
[kairos-io/kairos#2002
🐛 Upgrade on alpine arm errors
[kairos-io/kairos#2135
🐛 reset from the GRUB menu on alpine, gets stuck in an endless loop
[kairos-io/kairos#2136

Deprecation warnings:

Reading of `/etc/elemental/config.yaml` is working again but will be
deprecated in favor of `/etc/kairos/config.yaml`

#### New and noteworthy

- ✨ Enable secureboot for all flavors (minus alpine) by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2140
-   📖 Docs now have versioning starting with 3.0.0

#### What's Changed

- Add scp to fedora by
[@&#8203;jimmykarily](https://togithub.com/jimmykarily) in
[kairos-io/kairos#2154
- Remove duplicated zfs installation on rhel by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2161
- \[uki] Provide proper artifacts for auto-key-enrollment by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2172
- 🤖 Allow passing flags to enki and bump version by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2193
- 🐛 Do not recompress compressed firmware by
[@&#8203;Itxaka](https://togithub.com/Itxaka) in
[kairos-io/kairos#2237
- Have different compression depending on the ubuntu release by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2270
- Slim down Ubuntu by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2284
- Publish uki base image by
[@&#8203;mauromorales](https://togithub.com/mauromorales) in
[kairos-io/kairos#2290

**Full Changelog**:
kairos-io/kairos@v2.5.0...v3.0.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/marinatedconcrete/config).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implementation of secure boot
3 participants