7.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	Configuration Reference
The yaml configuration specifies the components and the build time artifacts. All components are downloaded at build time to create an image. The image is self-contained and immutable, so it can be tested reliably for continuous delivery.
The configuration file is processed in the order kernel, init, onboot, services, files.
Each section adds file to the root file system
kernel
The kernel section defines the kernel configuration. The image field specifies the Docker image,
which should contain a bzImage (for amd64 architecture, others may vary) and a file
called kernel.tar which is a tarball that is unpacked into the root, which should usually
contain a kernel modules directory. See kernel/ for source code. cmdline
specifies the kernel command line options if required.
init
The init section is a list of images that are used for the init system and are unpacked directly
into the root filesystem. This should bring up containerd, start the system and daemon containers,
and set up basic filesystem mounts. See pkg/init/ for source code. For ease of
modification runc and containerd images, which just contain these programs are added here
rather than bundled into the init container.
onboot
The onboot section is a list of images. These images are run before any other
images. They are run sequentially and each must exit before the next one is run.
These images can be used to configure one shot settings. See Image
specification for a list of supported fields.
services
The services section is a list of images for long running services which are
run with containerd.  Startup order is undefined, so containers should wait
on any resources, such as networking, that they need.  See Image
specification for a list of supported fields.
trust
The trust section specifies which build components are to be cryptographically verified with
Docker Content Trust prior to pulling.
Trust is a central concern in any build system, and LinuxKit's is no exception: Docker Content Trust provides authenticity,
integrity, and freshness guarantees for the components it verifies.  The LinuxKit maintainers are responsible for signing
mobylinux components, though collaborators can sign their own images with Docker Content Trust or Notary.
- imagelists which individual images to enforce pulling with Docker Content Trust. The image name may include tag or digest, but the matching also succeeds if the base image name is the same.
- orglists which organizations for which Docker Content Trust is to be enforced across all images (ex:- mobylinuxis the org for- mobylinux/kernel)
Image specification
Entries in the onboot and services sections specify an OCI image and
options. Default values may be specified using the org.mobyproject.config image label.
For more details see the OCI specification.
- namea unique name for the program being executed, used as the- containerdid.
- imagethe Docker image to use for the root filesystem. The default command, path and environment are extracted from this so they need not be filled in.
- capabilitiesthe Linux capabilities required, for example- CAP_SYS_ADMIN. If there is a single capability- allthen all capabilities are added.
- mountsis the full form for specifying a mount, which requires- type,- source,- destinationand a list of- options. If any fields are omitted, sensible defaults are used if possible, for example if the- typeis- devit is assumed you want to mount at- /dev. The default mounts and their options can be replaced by specifying a mount with new options here at the same mount point.
- bindsis a simpler interface to specify bind mounts, accepting a string like- /src:/dest:opt1,opt2similar to the- -voption for bind mounts in Docker.
- tmpfsis a simpler interface to mount a- tmpfs, like- --tmpfsin Docker, taking- /dest:opt1,opt2.
- commandwill override the command and entrypoint in the image with a new list of commands.
- envwill override the environment in the image with a new environment list
- cwdwill set the working directory, defaults to- /.
- netsets the network namespace, either to a path, or if- hostis specified it will use the host namespace.
- pidsets the pid namespace, either to a path, or if- hostis specified it will use the host namespace.
- ipcsets the ipc namespace, either to a path, or if- hostis specified it will use the host namespace.
- utssets the uts namespace, either to a path, or if- hostis specified it will use the host namespace.
- readonlysets the root filesystem to read only, and changes the other default filesystems to read only.
- maskedPathssets paths which should be hidden.
- readonlyPathssets paths to read only.
- uidsets the user id of the process. Only numbers are accepted.
- gidsets the group id of the process. Only numbers are accepted.
- additionalGidssets additional groups for the process. A list of numbers is accepted.
- noNewPrivilegesis- truemeans no additional capabilities can be acquired and- suidbinaries do not work.
- hostnamesets the hostname inside the image.
- oomScoreAdjchanges the OOM score.
- disableOOMKillerdisables the OOM killer for the service.
- rootfsPropagationsets the rootfs propagation, eg- shared,- slaveor (default)- private.
- cgroupsPathsets the path for cgroups.
- sysctlsets a list of- sysctlkey value pairs that are set inside the container namespace.
Further OCI values will be added, as the list is not yet complete.
Mount Options
When mounting filesystem paths into a container - whether as part of onboot or services - there are several options of which you need to be aware. Using them properly is necessary for your containers to function properly.
For most containers - e.g. nginx or even docker - these options are not needed. Simply doing the following will work fine:
binds:
 - /var:/some/var/path
However, in some circumstances you will need additional options. These options are used primarily if you intend to make changes to mount points from within your container that should be visible from outside the container, e.g., if you intend to mount an external disk from inside the container but have it be visible outside.
In order for new mounts from within a container to be propagated, you must set the following on the container:
- rootfsPropagation: shared
- The mount point into the container below which new mounts are to occur must be rshared,rbind. In practice, this is/var(or some subdir of/var), since that is the only true read-write area of the filesystem where you will mount things.
Thus, if you have a regular container that is only reading and writing, go ahead and do:
binds:
 - /var:/some/var/path
On the other hand, if you have a container that will make new mounts that you wish to be visible outside the container, do:
binds:
 - /var:/var:rshared,rbind
rootfsPropagation: shared