AutomatedServerInstalls

Differences between revisions 1 and 44 (spanning 43 versions)
Revision 1 as of 2019-07-12 03:14:05
Size: 4181
Editor: mwhudson
Comment:
Revision 44 as of 2020-01-24 03:26:15
Size: 6344
Editor: mwhudson
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
== Introduction == Please direct feedback on this proposal to [[https://community.ubuntu.com/t/please-review-design-for-automated-server-installs/11923|community.ubuntu.com]] or [[https://lists.ubuntu.com/mailman/listinfo/ubuntu-server|the ubuntu-server mailing list]].
Line 9: Line 9:
The server installer for 20.04 supports a new mode of operation: automated (or unattended, or hands-off) installation, autoinstallation for short. <<TableOfContents()>>
Line 11: Line 11:
This lets you answer all those configuration questions ahead of time in an ''autoinstall file'' and lets the installation process run without any interaction. = Introduction =
Line 13: Line 13:
== Differences from preseeding == The server installer for 20.04 supports a new mode of operation: automated installation, autoinstallation for short. You might also know this feature as unattended or handsoff or preseeded installation.

Autoinstallation lets you answer all those configuration questions ahead of time in an ''autoinstall file'' and lets the installation process run without any interaction.

= Differences from debian-installer preseeding =
Line 20: Line 24:
 * when the answer to a question is not present in a preseed, d-i stops and asks the user for input. autoinstalls are not like this: if there is any autoinstall config at all, the installer takes the default for any unanswered question  * when the answer to a question is not present in a preseed, d-i stops and asks the user for input. autoinstalls are not like this: by default, if there is any autoinstall config at all, the installer takes the default for any unanswered question (and fails if there is no default). You can designate particular sections in the config as "interactive", which means the installer will still stop and ask about those.
Line 22: Line 26:
== Providing the autoinstall file == = Providing the autoinstall file =
Line 26: Line 30:
 * As /autoinstall.cfg in the initrd
 * As /autoinstall.cfg on the install media (in any partition!)
 * As `/autoinstall.yaml` in the initrd
 * As `/autoinstall.yaml` on the install media
* As `/autoinstall.yaml` on a filesystem with label "autoinstall"
Line 30: Line 35:
And maybe these ways if people think they would be useful: = Creating an autoinstall file =
Line 32: Line 37:
 * As a b64encoded gzipped blob on the kernel command line
 * Given as a URL via DHCP

== Creating an autoinstall file ==

When any system is installed using the server installer, an autoinstall file for repeating the install is created at {{{/var/log/installer/autoinstall.cfg}}}.
When any system is installed using the server installer, an autoinstall file for repeating the install is created at {{{/var/log/installer/autoinstall.yaml}}}.
Line 45: Line 45:
$ autoinstall-editor --create $ autoinstall-editor --create > my-autoinstall.yaml
Line 47: Line 47:
$ autoinstall-editor autoinstall.cfg $ autoinstall-editor my-autoinstall.yaml
Line 50: Line 50:
== The format of an autoinstall file == = The format of an autoinstall file =
Line 52: Line 52:
The autoinstall file is YAML. Here is an example file that shows off most features: The autoinstall file is YAML and has [[/ConfigReference|full documentation]].
Line 54: Line 54:
{{{#!yaml A minimal config (for a single disk system) is:

{{{
Line 56: Line 58:
early_commands:
    - ping -c1 198.162.1.1
locale: en_US
keyboard:
    layout: en
    variant: uk
network:
    version: 2
    network:
        eth0:
            dhcp4: yes
proxy: http://squid.internal:3128/
mirror: http://repo.internal/
filesystem:
    recipe:
        name: lvm
Line 75: Line 61:
ssh:
    authorized_keys:
      - $key
    allow_pw: no
snaps:
    - go/stable
debconf_selections: |
    bind9 bind9/run-resolvconf boolean false
packages:
    - libreoffice
    - dns-server^
late_commands:
    - rm -rf /etc/init.d
Line 90: Line 63:
Many keys and values correspond straightforwardly to questions the installer asks (e.g. keyboard selection). There are some new options though: Here is an example file that shows off most features:
Line 92: Line 65:
 * `early_commands`: shell commands run after the installer has started, but before anything else (in particular, before scanning the system for block devices)
 * `debconf_selections` & `packages`: packages and configuration for them to be installed after installation has completed
 * `late_commands`: shell commands to run after the install has completed and any updates and packages installed, just before the system reboots
[[/ConfigReference#version|version]]`: 1`<<BR>>
[[/ConfigReference#reporting|reporting]]:<<BR>>
` hook:`<<BR>>
` type: webhook`<<BR>>
` endpoint: http://example.com/endpoint/path`<<BR>>
[[/ConfigReference#early-commands|early-commands]]`:`<<BR>>
` - ping -c1 198.162.1.1`<<BR>>
[[/ConfigReference#locale|locale]]`: en_US`<<BR>>
[[/ConfigReference#keyboard|keyboard]]`:`<<BR>>
` layout: en`<<BR>>
` variant: uk`<<BR>>
[[/ConfigReference#network|network]]`:`<<BR>>
` version: 2`<<BR>>
` network:`<<BR>>
` ethernets:`<<BR>>
` enp0s25:`<<BR>>
` dhcp4: yes`<<BR>>
` enp3s0:`<<BR>>
` enp4s0:`<<BR>>
` bonds:`<<BR>>
` bond0:`<<BR>>
` dhcp4: yes`<<BR>>
` interfaces:`<<BR>>
` - enp3s0`<<BR>>
` - enp4s0`<<BR>>
` parameters:`<<BR>>
` mode: active-backup`<<BR>>
` primary: enp3s0`<<BR>>
[[/ConfigReference#proxy|proxy]]`: http://squid.internal:3128/`<<BR>>
[[/ConfigReference#apt|apt]]`:`<<BR>>
` primary:`<<BR>>
` - arches: [default]`<<BR>>
` - uri: http://repo.internal/`<<BR>>
` sources:`<<BR>>
` my-ppa.list:`<<BR>>
` source: "ppa:curtin-dev/test-archive"`<<BR>>
` keyid: B59D 5F15 97A5 04B7 E230 6DCA 0620 BBCF 0368 3F77`<<BR>>
[[/ConfigReference#storage|storage]]`:`<<BR>>
` layout:`<<BR>>
` name: lvm`<<BR>>
[[/ConfigReference#identity|identity]]`:`<<BR>>
` username: mwhudson`<<BR>>
` password: $crypted_pass`<<BR>>
[[/ConfigReference#ssh|ssh]]`:`<<BR>>
` install-server: yes`<<BR>>
` authorized-keys:`<<BR>>
` - $key`<<BR>>
` allow-pw: no`<<BR>>
[[/ConfigReference#snaps|snaps]]`:`<<BR>>
` - go/stable`<<BR>>
[[/ConfigReference#debconf-selections|debconf-selections]]`: |`<<BR>>
` bind9 bind9/run-resolvconf boolean false`<<BR>>
[[/ConfigReference#packages|packages]]`:`<<BR>>
` - libreoffice`<<BR>>
` - dns-server^`<<BR>>
[[/ConfigReference#user-data|user-data]]`:`<<BR>>
` disable_root: false`<<BR>>
[[/ConfigReference#late-commands|late-commands]]`:`<<BR>>
` - sed -ie 's/GRUB_TIMEOUT=.*/GRUB_TIMEOUT=30/' /target/etc/default/grub`<<BR>>
[[/ConfigReference#error-commands|error-commands]]`:`<<BR>>
` - tar c /var/log/installer | nc 192.168.0.1 1000`
Line 96: Line 127:
=== Filesystem configuration === Many keys and values correspond straightforwardly to questions the installer asks (e.g. keyboard selection). See the reference for details of those that do not.
Line 98: Line 129:
Filesystem configuration is a complex topic and the description of the desired configuration in the autoinstall file can necessarily also be complex. The installer does support "recipes", simple ways of expressing common configurations. = Possible future directions =
Line 100: Line 131:
==== Supported recipes ==== There are other places we could put the autoinstall config:
Line 102: Line 133:
lvm & simple  * As a b64encoded gzipped blob on the kernel command line
 * Given as a URL via DHCP
Line 104: Line 136:
==== action-based config ==== We might want to extend the 'match specs' for disks to cover other ways of selecting disks.
Line 106: Line 138:
For full flexibility, the installer allows filesystem configuration to be done using a syntax which is a superset of that supported by curtin, described at https://curtin.readthedocs.io/en/latest/topics/storage.html. We might want to add some way of customizing the apt sources (adding a PPA, etc). Possibly just by accepting more of the curtin syntax for this.

There are other things we could do by default in a system with multiple disks (create an LVM VG incorporating all of them, just install on one disk picked at random, install on the largest disk, etc etc).

We could support kickstart compatibility as in kickseed.

This document is entirely a description of something that does not yet exist

Automated Server Installs for 20.04 (and maybe 18.04.4?)

This document is entirely a description of something that does not yet exist

Please direct feedback on this proposal to community.ubuntu.com or the ubuntu-server mailing list.

Introduction

The server installer for 20.04 supports a new mode of operation: automated installation, autoinstallation for short. You might also know this feature as unattended or handsoff or preseeded installation.

Autoinstallation lets you answer all those configuration questions ahead of time in an autoinstall file and lets the installation process run without any interaction.

Differences from debian-installer preseeding

preseeds are the way to automate an installer based on debian-installer (aka d-i).

autoinstalls for the new server installer differ from preseeds in the following main ways:

  • the file format is completely different (yaml vs debconf-set-selections format)
  • when the answer to a question is not present in a preseed, d-i stops and asks the user for input. autoinstalls are not like this: by default, if there is any autoinstall config at all, the installer takes the default for any unanswered question (and fails if there is no default). You can designate particular sections in the config as "interactive", which means the installer will still stop and ask about those.

Providing the autoinstall file

The autoinstall file can be provided in the following ways:

  • As /autoinstall.yaml in the initrd

  • As /autoinstall.yaml on the install media

  • As /autoinstall.yaml on a filesystem with label "autoinstall"

  • Via a http or https (or maybe tftp) URL on the kernel command line

Creating an autoinstall file

When any system is installed using the server installer, an autoinstall file for repeating the install is created at /var/log/installer/autoinstall.yaml.

Alternatively there is a snap, autoinstall-editor, that can be used to either edit or create from scratch an autoinstall file (it is actually mostly the same code as that that runs the installation in interactive mode).

# start editing new config file
$ autoinstall-editor
# dump out to stdout a complete autoinstall config file with default answers everywhere
$ autoinstall-editor --create > my-autoinstall.yaml
# edit existing autoinstall file
$ autoinstall-editor my-autoinstall.yaml

The format of an autoinstall file

The autoinstall file is YAML and has full documentation.

A minimal config (for a single disk system) is:

version: 1
identity:
    username: mwhudson
    password: $crypted_pass

Here is an example file that shows off most features:

version: 1
reporting:
    hook:
        type: webhook
        endpoint: http://example.com/endpoint/path
early-commands:
    - ping -c1 198.162.1.1
locale: en_US
keyboard:
    layout: en
    variant: uk
network:
    version: 2
    network:
        ethernets:
            enp0s25:
               dhcp4: yes
            enp3s0:
            enp4s0:
        bonds:
            bond0:
                dhcp4: yes
                interfaces:
                    - enp3s0
                    - enp4s0
                parameters:
            mode: active-backup
            primary: enp3s0
proxy: http://squid.internal:3128/
apt:
    primary:
        - arches: [default]
        - uri: http://repo.internal/
    sources:
        my-ppa.list:
            source: "ppa:curtin-dev/test-archive"
            keyid: B59D 5F15 97A5 04B7 E230  6DCA 0620 BBCF 0368 3F77
storage:
    layout:
        name: lvm
identity:
    username: mwhudson
    password: $crypted_pass
ssh:
    install-server: yes
    authorized-keys:
      - $key
    allow-pw: no
snaps:
    - go/stable
debconf-selections: |
    bind9      bind9/run-resolvconf    boolean false
packages:
    - libreoffice
    - dns-server^
user-data:
    disable_root: false
late-commands:
    - sed -ie 's/GRUB_TIMEOUT=.*/GRUB_TIMEOUT=30/' /target/etc/default/grub
error-commands:
    - tar c /var/log/installer | nc 192.168.0.1 1000

Many keys and values correspond straightforwardly to questions the installer asks (e.g. keyboard selection). See the reference for details of those that do not.

Possible future directions

There are other places we could put the autoinstall config:

  • As a b64encoded gzipped blob on the kernel command line
  • Given as a URL via DHCP

We might want to extend the 'match specs' for disks to cover other ways of selecting disks.

We might want to add some way of customizing the apt sources (adding a PPA, etc). Possibly just by accepting more of the curtin syntax for this.

There are other things we could do by default in a system with multiple disks (create an LVM VG incorporating all of them, just install on one disk picked at random, install on the largest disk, etc etc).

We could support kickstart compatibility as in kickseed.

FoundationsTeam/AutomatedServerInstalls (last edited 2020-06-11 04:19:11 by mwhudson)