mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-03-21 01:43:13 +00:00
27 lines
474 B
YAML
27 lines
474 B
YAML
---
|
|
ignition_version: 1
|
|
storage:
|
|
disks:
|
|
- device: /dev/sda
|
|
wipe_table: true
|
|
partitions:
|
|
- label: ROOT
|
|
number: 0
|
|
filesystems:
|
|
- device: "/dev/sda1"
|
|
format: "ext4"
|
|
create:
|
|
force: true
|
|
options:
|
|
- "-LROOT"
|
|
|
|
{{ if .ssh_authorized_keys }}
|
|
passwd:
|
|
users:
|
|
- name: core
|
|
ssh_authorized_keys:
|
|
{{ range $element := .ssh_authorized_keys }}
|
|
- {{$element}}
|
|
{{end}}
|
|
{{end}}
|