Created
November 21, 2020 19:53
-
-
Save nmasse-itix/7d225f09175eac54da694fccf71ee7a5 to your computer and use it in GitHub Desktop.
CoreOS Install
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.1.0" | |
}, | |
"passwd": { | |
"users": [ | |
{ | |
"groups": [ | |
"wheel", | |
"sudo" | |
], | |
"name": "nicolas", | |
"passwordHash": "$y$j9T$/cDRIBoeLOxNIbNykbclK.$1ZiK7FC.vl5r4Bo3bgXYABAjpzFkDhD.agBA73/dnU0", | |
"sshAuthorizedKeys": [ | |
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDK64XJZJIVf0G7lbPrVbe/ll39O1HNcMnkxbJCJ+k4aND/yiyYcUGBpjtYsfkX7ms2jVNFZ5S59tqeddqd2nzeL8R1vcC/CKxFhbCRL6mWkx3ANcsUhgFmdvjemCwcsDwAQQynh+MhhoCpFCU41mM0T9jT2TfuZx1Zt1ATNJeZ3epOfYvYntefu5LsLQ/8W2XDMtoCvgMLCWyiPZKqdpcOZKKDwB/Vat01T9oDV9h8B/SCA7YTm0Y4nJJnnJ3L+Bpt9R9nbjMZc0fe7EIyybbS7T+cleQ35L0oEaGN/sgrzlD+S4yXKFEof4Rv8d5wR1JBKHF+/VHpRMSJNB1VWpL5 [email protected]" | |
] | |
} | |
] | |
}, | |
"storage": { | |
"disks": [ | |
{ | |
"device": "/dev/sda", | |
"partitions": [ | |
{ | |
"label": "var", | |
"sizeMiB": 0, | |
"startMiB": 50000 | |
} | |
], | |
"wipeTable": false | |
} | |
], | |
"filesystems": [ | |
{ | |
"device": "/dev/disk/by-partlabel/var", | |
"format": "xfs", | |
"path": "/var" | |
} | |
] | |
}, | |
"systemd": { | |
"units": [ | |
{ | |
"contents": "# Generated by FCCT\n[Unit]\nBefore=local-fs.target\nRequires=systemd-fsck@/dev/disk/by-partlabel/var\nAfter=systemd-fsck@/dev/disk/by-partlabel/var\n\n[Mount]\nWhere=/var\nWhat=/dev/disk/by-partlabel/var\nType=xfs\n\n[Install]\nRequiredBy=local-fs.target", | |
"enabled": true, | |
"name": "var.mount" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment