Switch to kubernetes ipam mode.

This commit is contained in:
Tom Alexander
2025-12-29 15:59:00 -05:00
parent 0c7733d418
commit ed5d463741
3 changed files with 67 additions and 34 deletions

View File

@@ -28,5 +28,27 @@
k8s = (final.callPackage ./scope.nix { inherit (final.lib) makeScope; });
}
);
}
// {
devShells = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
appliedOverlay = self.overlays.default pkgs pkgs;
in
{
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
kubernetes-helm # To generate cilium manifests
fluxcd # To generate flux manifests
cilium-cli # To check cilium status
];
};
}
);
};
}