Skip to content

v3.3.2

Compare
Choose a tag to compare
@Itxaka Itxaka released this 17 Mar 14:15
4c73716

Caution

There is a bug in this release which breaks reset and its being fixed on kairos-io/kairos-agent#718
We recommend to skip this release and jump directly to the next patch version

This patch release contains an updated framework to enble the use of arbitrary encrypted partitions. We are no longer bound to only encrypt COS_PERSISTENT, but are able to encrypt other partitions as well.

For an example:

#cloud-config
install:
  extra-partitions:
    - name: extra1
      size: 1000
      fs: ext4
      label: EXTRA_PARTITION1
    - name: extra2
      size: 1000
      fs: ext4
      label: EXTRA_PARTITION2
  encrypted_partitions:
    - COS_PERSISTENT
    - EXTRA_PARTITION1

This would create an extra partition and encrypt both COS_PERSISTENT and the new partition. The same docs apply as they behave the same as before.

Full Changelog: v3.3.1...v3.3.2