Skip to content

Instantly share code, notes, and snippets.

@steelcowboy
Created September 20, 2020 20:43
Show Gist options
  • Save steelcowboy/d1171c587db86f885a3edc203c30ec74 to your computer and use it in GitHub Desktop.
Save steelcowboy/d1171c587db86f885a3edc203c30ec74 to your computer and use it in GitHub Desktop.
OpenSUSE MicroOS Ignition
{
"ignition": { "version": "3.1.0" },
"storage": {
"filesystems": [
{
"path": "/home",
"device": "/dev/disk/by-label/ROOT",
"format": "btrfs",
"wipeFilesystem": false,
"mountOptions": [
"subvol=/@/home"
]
}
]
},
"passwd": {
"users": [
{
"name": "root",
"passwordHash": [REDACTED]
},
{
"name": "steelcowboy",
"passwordHash": [REDACTED],
"groups": [
"wheel"
],
"sshAuthorizedKeys": [
[REDACTED]
]
}
],
"groups": [
{
"name": "wheel",
"system": true
}
]
},
"systemd": {
"units": [
{
"name": "sshd.service",
"enabled": true
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment