Go to file
2022-09-28 08:37:32 -05:00
common if cascade.source is not enabled, get cascade from gitlab 2022-09-28 08:37:32 -05:00
functions add some support functions 2022-09-27 11:07:58 -05:00
hosts change to two stage deploy to get IP on br0 2022-09-27 11:16:53 -05:00
overlays updates to incorporate cascade installer 2022-09-28 07:19:43 -05:00
profiles make an iso profile for building isos 2022-09-28 07:21:04 -05:00
.gitignore make an iso profile for building isos 2022-09-28 07:21:04 -05:00
custom-image.nix updates to make morph transparently available when building images 2022-09-26 10:30:12 -05:00
LICENSE initial import 2022-09-23 22:24:58 -05:00
network.nix change to two stage deploy to get IP on br0 2022-09-27 11:16:53 -05:00
nixpkgs-path.nix change to two stage deploy to get IP on br0 2022-09-27 11:16:53 -05:00
README.md updates to make morph transparently available when building images 2022-09-26 10:30:12 -05:00
shell.nix updates to incorporate cascade installer 2022-09-28 07:19:43 -05:00

cascade

The next iteration of the cascade network.

Should it have been thunder?

Probably.

It's cascade anyway.

Usage

From a [Proxmox VE][PVE] machine with [Nix][NIX] installed:

nix-shell

Guidance will be printed which should be followed.

Prerequisites

In order to discover your network and configure hosts, this configuration management system requires the following:

  • Samba DC with functioning DNS and DHCP server.
  • You must be able to auth with Kerberos to Samba.
  • Proxmox running on the local host
  • Proxmox should have a local filesystem called hdd-fs

The Future (or how to not Proxmox)

Or how it works without the script

Proxmox is not at all a requirement for using this.

Neither is Samba. They are requirements for the mkvirt function in shell.nix.

This may be replaced or not used at all. The image created in result/nixos.img will boot on most hypervisors.

After the image is created and booted, it must be morphed.

The first step in morphing is making the machine resolveable. This is done with Samba but may be done with another DNS system. The key is that it must be resolveable immediately after the record is created because morph then uses that record to find the machine. Reworking this to use IPs would require changing morph's defaults or explicitly setting the deployment target address to be something other than the hostname.

After the host is resolveable, morph.

Interesting Places

  • custom-image.nix
    • nixos.img disk size, format, partition table, etc
  • common/ssh.nix
    • configure ssh package (such as openssh_gssapi vs openssh)
  • common/users.nix
    • the deploy user, ssh keys, shell, etc.
  • functions/*.nix
    • a function per file
    • load default.nix to load all functions by name in a set
  • hosts/*
    • hosts deployed via morph are pulled from here automatically
    • files in this folder should be informational only. they do not return a function.
    • functionality which requires access to config or pkgs should be implemented in profiles/ and loaded by name in imports.
  • profiles/*
    • profiles for describing machines of a certain class.
    • profiles may represent hardware such as api and qemu-vm or a configuration pattern such as dhcp-server or base.
    • the base profile is special in that it should always be loaded. it is generally included by the hardware profile.
  • shell.nix
    • shell functions and configuration to build and deploy machines
      • env_cascade
        • discover domain, and realm config such as domain controller (samba) to send DNS updates to
        • sanitize config
        • returns env vars
      • $DOMAIN
        • domain name (from hostname -d), lowercase
      • $REALM
        • domain name (from hostname -d), uppercase
          • $workgroup
        • workgroup (first domain segment), lowercase
      • $WORKGROUP
        • workgroup (first domain segment), uppercase
      • $DC
        • lookup PTR of (lookup A of $DOMAIN)
        • this will find a domain controller in a "normal" domain such as is created by default in Samba
      • env_name
        • sanitize hostname
        • returns env vars
          • $name hostname, lowercase
      • $NAME hostname, uppercase
      • samba-create-ipv4-records
        • create DNS records
      • wait-for-vm-ipv4
        • wait for a VM to have an ipv4 address in a private subnet
      • mkvirt
        • morph build
        • get an unused VMID from Proxmox
        • create a new virt with discovered VMID
        • wait for IP
        • create DNS record with IP
        • morph deploy to single machine
      • destroy-host
        • removes hosts/$name.nix
        • removes DNS entry for $name.$DOMAIN

NIX: https://www.nixos.org PVE: https://www.proxmox.com/en/proxmox-ve