Running Flatcar Container Linux on Google Compute Engine
Before proceeding, you will need a GCE account (
GCE free trial
) and
install gcloud
on your machine. In each command below, be sure to insert your project name in place of <project-id>.
After installation, log into your account with gcloud auth login and enter your project ID when prompted.
Flatcar is published by the kinvolk publisher on GCE.
Choosing a channel
Flatcar Container Linux is designed to be updated automatically with different schedules per channel. You can disable this feature , although we don’t recommend it. Read the release notes for specific features and bug fixes.
Create 3 instances from the image above using our Ignition from example.ign:
The Stable channel should be used by production clusters. Versions of Flatcar Container Linux are battle-tested within the Beta and Alpha channels before being promoted. The current version is Flatcar Container Linux 4459.2.4.
gcloud compute instances create flatcar1 flatcar2 flatcar3 --image-project kinvolk-public --image-family flatcar-stable --zone us-central1-a --machine-type n1-standard-1 --metadata-from-file user-data=config.ign
The Beta channel consists of promoted Alpha releases. The current version is Flatcar Container Linux 4593.1.0.
gcloud compute instances create flatcar1 flatcar2 flatcar3 --image-project kinvolk-public --image-family flatcar-beta --zone us-central1-a --machine-type n1-standard-1 --metadata-from-file user-data=config.ign
The Alpha channel closely tracks master and is released frequently. The newest versions of system libraries and utilities will be available for testing. The current version is Flatcar Container Linux 4628.0.0.
gcloud compute instances create flatcar1 flatcar2 flatcar3 --image-project kinvolk-public --image-family flatcar-alpha --zone us-central1-a --machine-type n1-standard-1 --metadata-from-file user-data=config.ign
LTS release streams are maintained for an extended lifetime of 18 months. The yearly LTS streams have an overlap of 6 months. The current version is Flatcar Container Linux 4081.3.6.
gcloud compute instances create flatcar1 flatcar2 flatcar3 --image-project kinvolk-public --image-family flatcar-lts --zone us-central1-a --machine-type n1-standard-1 --metadata-from-file user-data=config.ign
Uploading an Image
If you prefer, you can also run Flatcar Container Linux by uploading a custom image to your account.
To do so, run the following command:
|
|
Where:
<bucket name>should be a valid bucket name.<project id>should be your project ID.
During execution, the script will ask you to log into your Google account and then create all necessary resources for uploading an image. It will then download the requested Flatcar Container Linux image and upload it to the Google Cloud.
To see all available options, run:
|
|
The Dockerfile for the quay.io/kinvolk/google-cloud-flatcar-image-upload image is managed
here
.
Upgrade from CoreOS Container Linux
You can also upgrade from an existing CoreOS Container Linux system .
Butane Config
Flatcar Container Linux allows you to configure machine parameters, configure networking, launch systemd units on startup, and more via Butane Configs. These configs are then transpiled into Ignition configs and given to booting machines. Head over to the [docs to learn about the supported features][butane-configs].
You can provide a raw Ignition JSON config to Flatcar Container Linux via the Google Cloud console’s metadata field user-data or via a flag using gcloud.
As an example, this Butane YAML config will start an NGINX Docker container:
|
|
Transpile it to Ignition JSON:
|
|
Additional storage
Additional disks attached to instances can be mounted with a .mount unit. Each disk can be accessed via /dev/disk/by-id/google-<disk-name>. Here’s the Butane Config to format and mount a disk called database-backup:
|
|
For more information about mounting storage, Google’s own documentation is the best source. You can also read about mounting storage on Flatcar Container Linux .
Adding more machines
To add more instances to the cluster, just launch more with the same Ignition config inside of the project.
SSH and users
Users are added to Container Linux on GCE by the user provided configuration (i.e. Ignition, cloudinit) and by either the GCE account manager or GCE OS Login . OS Login is used if it is enabled for the instance, otherwise the GCE account manager is used.
Using the GCE account manager
You can log in your Flatcar Container Linux instances using:
|
|
Users other than core, which are set up by the GCE account manager, may not be a member of required groups. If you have issues, try running commands such as journalctl with sudo.
Using OS Login
You can log in using your Google account on instances with OS Login enabled. OS Login needs to be enabled in the GCE console and on the instance. It is enabled by default on instances provisioned with Container Linux 1898.0.0 or later. Once enabled, you can log into your Container Linux instances using:
|
|
This will use your GCE user to log in.
Disabling OS Login on newly provisioned nodes
You can disable the OS Login functionality by masking the oem-gce-enable-oslogin.service unit:
|
|
When disabling OS Login functionality on the instance, it is also recommended to disable it in the GCE console.
Monitoring
Flatcar isn’t a supported distro for the Google Ops Agent , as it’s designed for traditional operating systems and monitoring the processes running on them.
It’s likely however that there will be metrics within Flatcar that will be useful additions to VM metrics in Google Cloud Monitoring.
GCP Custom Metrics
Google provide an API and SDKs to ingest custom metrics. For example this Python script will send CPU load average and root volume utilisation every minute:
gcp_custom_metrics.py
|
|
The script can then be packaged up into a Dockerfile:
Dockerfile
|
|
The resulting image can then be deployed to a container on each Flatcar node.
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 .