Running Flatcar on Brightbox
These instructions will walk you through using Flatcar on Brightbox, importing a custom image, and running your first server using the command line interface. Please note that Brightbox is compatible with OpenStack: it is not a mistake if we refer to OpenStack images and specific variables.
Import the image
While Brightbox provides Flatcar images for Beta, Stable and LTS channels it is possible to import your own Flatcar image in Brightbox using the CLI .
For example, to upload an image from the Flatcar Alpha channel:
|
|
Butane Configs
Flatcar allows you to configure machine parameters, launch systemd units on startup and more via Butane Configs. These configs are then transpiled into Ignition JSON configs and given to booting machines. Jump over to the docs to learn about the supported features . We’re going to provide our Butane Config to Brightbox via the user-data flag. Our Butane Config will also contain SSH keys that will be used to connect to the instance.
As an example, this Butane YAML config will start an Nginx Docker container and display the instance hostname:
|
|
Transpile it to Ignition JSON:
|
|
The coreos-metadata.service saves metadata variables to /run/metadata/flatcar. Systemd units can use them with EnvironmentFile=/run/metadata/flatcar in the [Service] section when setting Requires=coreos-metadata.service and After=coreos-metadata.service in the [Unit] section.
Launch machine
Boot the machines with the CLI, referencing the image ID from the import step above or using an official image ID (brightbox images list --type=official) and your
Ignition file from Butane
:
|
|
Your first Flatcar instance should now be running. The only thing left to do is find the IP address and SSH in.
|
|
Finally SSH into an instance, note that the user is core:
|
|
⚠️ In the following example, the default firewall policy created during account registration has been used, which permits access to TCP ports 22 and 80. If you’ve modified the default firewall policy then you may need to take additional steps to open access. Here’s the documentation to update the firewall policies: https://www.brightbox.com/docs/guides/cli/firewall/
Using Flatcar Container Linux
Now that you have a machine booted it is time to play around. Check out the Flatcar Container Linux Quickstart guide or dig into more specific topics .