- netboot-base.nix with SSH key auth - Launch scripts for node01/02/03 - Node configuration.nix and disko.nix - Nix modules for first-boot automation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
720 B
JSON
30 lines
720 B
JSON
{
|
|
"node_id": "node03",
|
|
"node_role": "control-plane",
|
|
"bootstrap": true,
|
|
"cluster_name": "vm-test-cluster",
|
|
"leader_url": "https://192.168.100.11:2379",
|
|
"raft_addr": "192.168.100.13:2380",
|
|
"initial_peers": [
|
|
"node01:2380",
|
|
"node02:2380",
|
|
"node03:2380"
|
|
],
|
|
"flaredb_peers": [
|
|
"node01:2480",
|
|
"node02:2480",
|
|
"node03:2480"
|
|
],
|
|
"node_ip": "192.168.100.13",
|
|
"node_fqdn": "node03.plasma.local",
|
|
"network": {
|
|
"cluster_cidr": "192.168.100.0/24",
|
|
"pod_cidr": "10.244.0.0/16",
|
|
"service_cidr": "10.96.0.0/12"
|
|
},
|
|
"tls": {
|
|
"ca_cert": "/etc/nixos/secrets/ca.crt",
|
|
"node_cert": "/etc/nixos/secrets/node03.crt",
|
|
"node_key": "/etc/nixos/secrets/node03.key"
|
|
}
|
|
}
|