Created
March 20, 2022 23:39
-
-
Save creedasaurus/a7803e6fdab164d3a002a8b09e9ed17e to your computer and use it in GitHub Desktop.
Playing with k3OS installs
This file contains 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
ssh_authorized_keys: | |
- github:creedasaurus | |
hostname: k3osvm | |
init_cmd: | |
- "echo hello, init command" | |
boot_cmd: | |
- "echo hello, boot command" | |
run_cmd: | |
- "echo hello, run command" | |
k3os: | |
# data_sources: | |
# - aws | |
# - cdrom | |
modules: | |
- kvm | |
- nvme | |
# sysctl: | |
# kernel.printk: "4 4 1 7" | |
# kernel.kptr_restrict: "1" | |
dns_nameservers: | |
- 8.8.8.8 | |
- 1.1.1.1 | |
ntp_servers: | |
- 0.us.pool.ntp.org | |
- 1.us.pool.ntp.org | |
# wifi: | |
# - name: home | |
# passphrase: mypassword | |
# - name: nothome | |
# passphrase: somethingelse | |
password: supersecurepassword | |
# server_url: https://someserver:6443 | |
# token: TOKEN_VALUE | |
# labels: | |
# region: us-west-1 | |
# somekey: somevalue | |
k3s_args: | |
- server | |
- "--cluster-init" | |
# environment: | |
# http_proxy: http://myserver | |
# https_proxy: http://myserver | |
# taints: | |
# - key1=value1:NoSchedule | |
# - key1=value1:NoExecute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment