Last active
May 28, 2025 06:52
-
-
Save pravinba9495/db7d47a51f015117350a0493c6653c64 to your computer and use it in GitHub Desktop.
Fedora CoreOS Ignition Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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