Linux/Cloud-init: Difference between revisions
< Linux
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
== Cloud-Init to bare metal with USB sticks == | == Cloud-Init to bare metal with USB sticks == | ||
* Prepare 2x USB sticks | * Prepare 2x USB sticks | ||
** Ubuntu Server standard bootable USB | ** Ubuntu Server standard bootable USB | ||
** FAT32, name "CIDATA" | ** FAT32, name "CIDATA" | ||
* Boot with both USB sticks plugged in | |||
<br> | |||
* CIDATA | |||
* G:\meta-data (empty file) | |||
<pre> | |||
</pre> | |||
* G:\user-data | |||
<pre> | |||
#cloud-config | |||
autoinstall: | |||
version: 1 | |||
identity: | |||
hostname: edgeserver | |||
password: <passwdhash> | |||
username: marcluer | |||
kernel: | |||
package: linux-generic-hwe-22.04 | |||
apt: | |||
geoip: true | |||
keyboard: | |||
layout: de | |||
toggle: null | |||
variant: nodeadkeys | |||
locale: en_US.UTF-8 | |||
source: | |||
id: ubuntu-server-minimal | |||
ssh: | |||
allow-pw: true | |||
authorized-keys: [] | |||
install-server: true | |||
storage: | |||
layout: | |||
name: direct | |||
updates: security | |||
late-commands: | |||
# shut-down the host after copying completed | |||
- shutdown -h now | |||
user-data: | |||
timezone: Europe/Berlin | |||
</pre> | |||
== Links == | == Links == |
Revision as of 20:50, 26 November 2023
Cloud-Init to bare metal with USB sticks
- Prepare 2x USB sticks
- Ubuntu Server standard bootable USB
- FAT32, name "CIDATA"
- Boot with both USB sticks plugged in
- CIDATA
- G:\meta-data (empty file)
- G:\user-data
#cloud-config autoinstall: version: 1 identity: hostname: edgeserver password: <passwdhash> username: marcluer kernel: package: linux-generic-hwe-22.04 apt: geoip: true keyboard: layout: de toggle: null variant: nodeadkeys locale: en_US.UTF-8 source: id: ubuntu-server-minimal ssh: allow-pw: true authorized-keys: [] install-server: true storage: layout: name: direct updates: security late-commands: # shut-down the host after copying completed - shutdown -h now user-data: timezone: Europe/Berlin