mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
.. | ||
README.md |
Constellation-OS Assembler
This container image uses coreos assembler as a base (quay.io/coreos-assembler/coreos-assembler
) to facilitate a build environment for the Constellation-OS.
The root filesystem takes its contents (OSTree) from constellation-fedora-coreos-config.
And the Constellation-OS Assembler can be pulled from ghcr.io/edgelesssys/constellation-coreos-assembler
Setup
Prerequisites: podman
and qemu-kvm
are installed, nested virtualization is enabled.
Make sure your user is allowed read and write access on /dev/kvm
.
If the device is not mounted in the container try the following command, and restart the container:
sudo chmod 666 /dev/kvm
Using the Assembler to create a bootable operating system
- Create the assembler image as described here
- Source the
fcos/.env
file to enable thecosa
bash alias:source fcos/.env
- Set the
BOOTSTRAPPER_BINARY
environment variable to a path of the compiled bootstrapper binary. It will be mounted in the cosa container and copied into the resulting coreos image.BOOTSTRAPPER_BINARY="/path/to/bootstrapper"
- Go into the build folder and initialize cosa:
cd fcos/build cosa init https://github.com/edgelesssys/constellation-fedora-coreos-config cosa fetch
- Build the OS image:
cosa build
- Create an image for a cloud provider
cosa buildextend-gcp cosa buildextend-aws cosa buildextend-azure [...]
Using a locally checked out git repo of the coreos-config during development
Simply set the environment variable COREOS_ASSEMBLER_CONFIG_GIT
to the local folder and perform the rest of the steps as usual:
COREOS_ASSEMBLER_CONFIG_GIT=/path/to/constellation-fedora-coreos-config