photoncloud-monorepo/nix/modules/default.nix
centra 4ab47b1726
Implement declarative tenant networking and local VM dataplane
Add tenant-scoped PrismNET routing, security-group, port, and service-IP APIs plus a deployer reconciler and Nix module that apply declarative tenant network state.

Teach PlasmaVMC to realize PrismNET NICs as a concrete local worker dataplane with Linux bridges, dnsmasq-backed DHCP, tap devices, richer network metadata, stable managed-volume IDs, and file:// image imports.

Expand the VM cluster validation around the new path, including the guest webapp demo, restart and cross-node migration checks, IAM listener reservation hardening, and a flake workspace-source-root audit so Nix builds keep path dependencies complete.
2026-04-04 00:07:43 +09:00

28 lines
592 B
Nix

{
imports = [
./chainfire.nix
./plasmacloud-cluster.nix
./install-target.nix
./service-port-reservations.nix
./creditservice.nix
./coronafs.nix
./flaredb.nix
./iam.nix
./plasmavmc.nix
./prismnet.nix
./flashdns.nix
./fiberlb.nix
./plasmacloud-network.nix
./plasmacloud-resources.nix
./plasmacloud-tenant-networking.nix
./lightningstor.nix
./k8shost.nix
./nightlight.nix
./deployer.nix
./nix-agent.nix
./node-agent.nix
./fleet-scheduler.nix
./observability.nix
./first-boot-automation.nix
];
}