Document an example setup of CoreOS

This commit is contained in:
2023-12-02 16:56:23 +11:00
commit 42e9090c38
4 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
variant: fcos
version: 1.4.0
passwd:
users:
- name: core
ssh_authorized_keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwojmm5GUDQTt/ic1w3yf5c0fyiPqhy8D9Y4qMVljEA othrayte@gmail.com

View File

@@ -0,0 +1,15 @@
{
"ignition": {
"version": "3.3.0"
},
"passwd": {
"users": [
{
"name": "core",
"sshAuthorizedKeys": [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJwojmm5GUDQTt/ic1w3yf5c0fyiPqhy8D9Y4qMVljEA othrayte@gmail.com"
]
}
]
}
}

View File

@@ -0,0 +1,3 @@
1. Ensure butane is installed `dnf install butane`
2. Compile butane files into ignition files
`butane --pretty --strict example.bu --output example.ign`