on Installing CoreOS on Bare Metal :: Fedora Docs I tried installing from iso with example.fcc:
variant: fcos
version: 1.0.0
passwd:
users:
- name: core
password_hash: “my long secret hash”
groups:
- wheel
- sudo
podman run -i --rm Quay --pretty --strict < example.fcc > example.ign
gives example.ign:
{
“ignition”: {
“config”: {
“replace”: {
“source”: null,
“verification”: {}
}
},
“security”: {
“tls”: {}
},
“timeouts”: {},
“version”: “3.0.0”
},
“passwd”: {
“users”: [
{
“groups”: [
“wheel”,
“sudo”
],
“name”: “core”,
“passwordHash”: “my long secret hash”
}
]
},
“storage”: {},
“systemd”: {}
}
I install according to instruction (live-boot+ sudo coreos-installer install /dev/sda --ignition example.ign and sudo reboot) I get errors related to standard input not set and everything freezes…
How to solve this?