Skip to content

Instantly share code, notes, and snippets.

@pravinba9495
Last active May 28, 2025 06:52
Show Gist options
  • Save pravinba9495/db7d47a51f015117350a0493c6653c64 to your computer and use it in GitHub Desktop.
Save pravinba9495/db7d47a51f015117350a0493c6653c64 to your computer and use it in GitHub Desktop.
Fedora CoreOS Ignition Config
{
"ignition": {
"version": "3.5.0"
},
"passwd": {
"users": [
{
"groups": [
"wheel"
],
"homeDir": "/home/core",
"name": "core",
"sshAuthorizedKeys": [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGVl3sGxYX8MiB9lzTMgy+ZoMvcWNugLOxWrLArRlPHt"
],
"shell": "/bin/bash"
}
]
},
"storage": {
"files": [
{
"path": "/etc/hostname",
"contents": {
"compression": "",
"source": "data:,fcos"
},
"mode": 420
}
],
"links": [
{
"path": "/etc/localtime",
"target": "/usr/share/zoneinfo/America/Toronto"
}
]
},
"systemd": {
"units": [
{
"mask": true,
"name": "docker.service"
},
{
"enabled": true,
"name": "podman.service"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment