dmgolembiowski / goldboot

Bringing immutable infrastructure to the desktop!

Home Page:https://goldboot.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Normal people don't reinstall their OS from scratch very often. When they do, the moment they reach that pristine desktop or terminal after a clean installation, all hell breaks loose. Settings get changed, applications are installed, bloatware is removed, files get downloaded here and there. The system is generally altered from its original state into a new "customized" state by a manual flurry of mouse clicks and key presses.

If you think about your system like a server, this approach is called mutable infrastructure, meaning you mutate the state of your system repeatedly until it eventually suits your needs. And when something goes awry, you have to make the necessary changes to get it back in line.

For normal people, mutable infrastructure works out fine until something major breaks or they have to migrate to a new computer altogether. In these cases, they probably end up starting over from scratch and have to reapply their changes again (and probably differently this time).

Slightly less normal people might have scripts or even use a configuration management tool like Ansible or Puppet to automate all of those customizations. This is great, but you can't start at a boot prompt and immediately run an Ansible playbook. Something (or someone) has to install the OS before the automation can be "kicked off". Also, configuration management tools have limited scope.

Truly sophisticated computer elites practice immutable infrastructure. Meaning that, every time they boot their system, its state begins identically to the time before. Any changes that are made during the course of runtime vanish on reboot. This approach has some real benefits, but requires quite a bit of effort from the user.

If you're looking to achieve something close to immutable infrastructure without creating a lot of extra work for yourself, you've come to the right place.

In the goldboot approach, you choose a starting template containing an absolutely minimal install of your favorite OS. Then you create provisioners which are the scripts that add all of your customizations on top of the template. From these pieces, goldboot builds a machine image ready to be deployed to real hardware.

Warning: this tool is totally unfinshed and should be used for testing only! Proceed at your own risk!

License build Discord Lines of code Stars

goldboot

goldboot is a command-line utility similar in nature to Packer that builds machine images for both servers and workstations alike.

These machine images (also known as golden images) contain your operating system(s), applications, software patches, and configuration all rolled into one easily deployable package.

The CLI is designed to run locally or in the cloud from a CI pipeline.

goldboot-linux

The golden images that goldboot produces can be deployed through a bootable Linux USB stick with a graphical user interface.

The goldboot command can create a bootable USB stick and include images on it.

goldboot-registry

There's also an optional HTTP server that hosts goldboot images over the network. goldboot-linux is capable of downloading images from a registry and applying it to the local machine.

Platform Support Matrix

The following table shows planned support (nothing here is fully complete yet).

OS Name Testing Provisioners Multiboot
Alpine Alpine Linux x86_64 aarch64 Yes Yes
Arch Linux Arch Linux x86_64 aarch64 Yes Yes
Debian Debian x86_64 aarch64 Yes Yes
macOS macOS x86_64 Yes No
Pop!_OS Pop!_OS x86_64 Yes Yes
Steam Deck Steam Deck x86_64 No Yes
Steam OS Steam OS x86_64 Yes Yes
Windows 10 Windows 10 x86_64 Yes No

Getting Started

Let's build a basic Arch Linux image for simplicity.

First, create a directory which can later be added to version control:

mkdir Test
cd Test

Initialize the directory and choose the ArchLinux base template to start with:

goldboot init --name Test --template ArchLinux

This will create goldboot.json which contains configuration options that can be tweaked to suit your needs.

For example, we can create scripts to customize the image:

# Example provisioner script
echo 'pacman -Syu firefox' >configure.sh

And add it to the goldboot config:

"provisioners": [
	{
		"type": "shell",
		"script": "configure.sh"
	}
]

Now, build the image:

goldboot build

Once the build succeeds, the image will be saved to the system's library directory. To deploy it to a physical disk, you can use a bootable USB drive:

# THIS WILL OVERWRITE /dev/sdX!
goldboot make_usb --output /dev/sdX --include Test

Once the USB is created, you can use it to boot into the goldboot live environment and select an image to write:

Once the image has been applied, remove the bootable USB drive and reboot the machine.

About

Bringing immutable infrastructure to the desktop!

https://goldboot.org

License:GNU Affero General Public License v3.0


Languages

Language:Rust 97.5%Language:Shell 1.5%Language:CSS 0.5%Language:PowerShell 0.4%Language:Dockerfile 0.0%