summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRobert Göhler <github@ghlr.de>2023-12-18 22:09:08 +0100
committerGitHub <noreply@github.com>2023-12-18 22:09:08 +0100
commit8fe5bc54af35eb38deccfaeeee5395184817c680 (patch)
tree9682b7b150bfc8cc910b6049f97cd2cea640ef2b /docs
parent0f5b43bc77445456b57c58a2697875def208fec7 (diff)
parentfb057558220c74c11a639ba874d1a2f9fcd4c4e7 (diff)
downloadvyos-documentation-8fe5bc54af35eb38deccfaeeee5395184817c680.tar.gz
vyos-documentation-8fe5bc54af35eb38deccfaeeee5395184817c680.zip
Merge pull request #1185 from aapostoliuk/vyos-doc-cloudinit
cloud-init: Added 'vyos-install' module documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/automation/cloud-init.rst32
1 files changed, 30 insertions, 2 deletions
diff --git a/docs/automation/cloud-init.rst b/docs/automation/cloud-init.rst
index 94123e54..506a2ef4 100644
--- a/docs/automation/cloud-init.rst
+++ b/docs/automation/cloud-init.rst
@@ -44,7 +44,7 @@ described below.
Cloud-config modules
********************
-In VyOS, by default, enabled only two modules:
+In VyOS, by default, enabled three modules:
* ``write_files`` - this module allows to insert any files into the filesystem
before the first boot, for example, pre-generated encryption keys,
@@ -52,13 +52,19 @@ In VyOS, by default, enabled only two modules:
* ``vyos_userdata`` - the module accepts a list of CLI configuration commands in
a ``vyos_config_commands`` section, which gives an easy way to configure the
system during deployment.
+* ``vyos_install`` - this module allows to install VyOS without human intervention.
************************
cloud-config file format
************************
A cloud-config document is written in YAML. The file must begin
-with ``#cloud-config`` line. The key used to designate a VyOS configuration
+with ``#cloud-config`` line.
+
+************************
+Module vyos_userdata
+************************
+The key used to designate a VyOS configuration
is ``vyos_config_commands``. What follows is VyOS configuration using
the "set-style" syntax. Both "set" and "delete" commands are supported.
@@ -88,6 +94,28 @@ Here is an example cloud-config.
- set interfaces ethernet eth1 address '192.0.2.247/24'
- set protocols static route 198.51.100.0/24 next-hop '192.0.2.1'
+************************
+Module vyos_install
+************************
+This module allows to install VyOS without human intervention.
+It will be useful for the installation via a network like PXE or USB flash install.
+After network boot or USB drive boot, this module runs automatic system installation with
+predefined grub parameters.
+The next possible option can be used.
+
+.. code-block:: yaml
+
+ #cloud-config
+ vyos_install:
+ activated: true # true - enable installer, false - disable. Default: false
+ post_reboot: true # true - reboot after installation, false - do not reboot. Default: false
+ ci_disable: true # true - disable cloud-init after installation, false - do not disable. Default: false
+ boot_params:
+ console_type: serial # type of console: kvm, serial. Default: kvm
+ serial_console_num: 1 # serial console number. Default: 0
+ serial_console_speed: 115200 # serial console speed. Default: 9600
+ cmdline_extra: nosmt mitigations=off # add extra parameters for kernel cmdline
+
*************************
System Defaults/Fallbacks
*************************