Build Ubuntu images independent of Launchpad's infrastructure
Build Ubuntu images independent of Launchpad’s infrastructure
Building images using ubuntu-standalone builder is a three-phase process:
The generate_build_config.py
tool is used to produce the cloud-config
that we will pass in to our cloud instance. In the basic case, it
outputs cloud-config that will perform a basic build:
$ ./generate_build_config.py > build-config.yaml
The cloud-config it produces will build most of the artifacts that are
found on cloud-images.ubuntu.com for
xenial.
ubuntu-standalone-builder allows you to launch cloud instances to
perform the build in any way you wish. It is assumed that the
following is true of the instance you choose to launch:
The first three conditions are met by the Ubuntu images published in
all major clouds, and on
cloud-images.ubuntu.com, and the
fourth can be met when launching an instance. Below we
show specific examples of how to launch instances with cloud-config
and an appropriately-sized disk.
In order to launch a Microsoft Azure instance with the buildcloud-config
, run the following command:
$ azure vm quick-create \
--custom-data build-config.yaml \
--image-urn canonical:ubuntuserver:16.04-LTS:latest \
--admin-username ubuntu \
--os-type Linux
You may also want to specify an SSH key that will be placed on the
instance, so you don’t have to type out a password so often. To do
this, append the following to your command:
--ssh-publickey-file <path to SSH public key>
All of the above assumes that you are using Azure Resource
Manager,
and will prompt you for the other arguments required to launch your VM.
(The default Ubuntu image on Microsoft Azure has a root disk of 30GB, so
no additional configuration is required in order to have enough disk
space for the build.)
When your build instance launches, cloud-init will start performing the
build in the background. If you want to see the output from the build
process, you can tail cloud-init’s output:
$ tail -f /var/log/cloud-init-output.log
The final thing that the build process does is to move the built images
in to /home/ubuntu/images
; you can tell that the build is complete
once image files are placed there.
Once the image build process has completed, you will find the image
build artifacts in /home/ubuntu/images
; the files will havelivecd.ubuntu-cpc.
as their prefix.
To fetch, for example, the root squashfs, you can simply use scp
:
$ scp ubuntu@<INSTANCE>:images/livecd.ubuntu-cpc.squashfs .
In order to customise the contents of the built images, you can provide
a parameter to generate_build_config.py
, --customisation-script
.
The argument to this should be the path to a shell script which will be
run within the image chroot after all other image customisation is
complete.
For example, if you wanted RabbitMQ server to be installed in all the
images that are produced, you could write a shell script that looked
something like this out to customisation.sh
:
#!/bin/sh -eux
echo "================= Running customisation script ================="
apt-get update -qqy
apt-get install -qqy rabbitmq-server
And then, when generating your cloud-config, you simply pass this togenerate_build_config.py
:
$ ./generate_build_config.py \
--customisation-script customisation.sh \
> build-config.yaml
You can then pass build-config.yaml
in to your instance launch as
normal, and you’ll get your customised images.