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
### Keybase proof | |
I hereby claim: | |
* I am forbiddenera on github. | |
* I am forbiddenera (https://keybase.io/forbiddenera) on keybase. | |
* I have a public key ASDFItgkUpJ-cw8YLud1tZoTh8Myoh8K0xYArgFiTdSulgo | |
To claim this, I am signing this object: |
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
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa YOUR-KEY-HERE | |
hostname: initializing | |
write_files: | |
- path: /etc/starship.conf | |
permissions: 0644 |
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
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa key | |
write_files: | |
- path: /opt/cloud-config.yml | |
permissions: 0644 | |
content: | | |
#cloud-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
# add this to your cloud config | |
# or a systemctl unit file on all nodes | |
# or as a fleetctl global unit (add [X-Fleet]\nglobal=true) | |
# will auto detect a nodes memory and create a swap file the same size, turn off CoW, mount a loopback device | |
# (actually, it touches the file first THEN disables COW!) | |
# fully dynamic and non-interfering, will find the first free loopback & unmount/delete on stop | |
- name: swap-auto.service | |
command: start | |
enabled: true | |
content: |
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
#!ipxe | |
set base-url http://alpha.release.core-os.net/amd64-usr/current | |
kernel ${base-url}/coreos_production_pxe.vmlinuz sshkey="ssh-rsa key" cloud-config-url=http://yoursite.com/coreos/cloud-config-bootstrap.sh | |
initrd ${base-url}/coreos_production_pxe_image.cpio.gz | |
boot |