about summary refs log tree commit diff
path: root/nixos/tests/containers-bridge.nix
AgeCommit message (Collapse)AuthorFilesLines
2024-05-12nixos: remove historical maintainership of modules by eelcoJade Lovelace1-1/+1
Eelco has made several early contributions to NixOS including writing the samba module among other things, but is more or less inactive these days. By my brief inspection, he has not committed to the nixos/ tree since releasing Nix 2.13 in early 2023 and merging a PR to networking tests slightly before that. A lot of these tests/modules are actually unmaintained in practice, so we should update the code to reflect the practical reality so someone can consider picking them up.
2022-03-28treewide: machine -> nodes.machineRobert Hensing1-1/+1
2021-11-21nixos/qemu-vm: default memorySize 384 -> 1024Artturin1-1/+0
the default hasn't been changed since 2009 this can improve our test performances nixos/tests: remove explicit memorySize <1024 1024MiB is now the default
2021-10-28nixos/qemu-vm: Rename pathsInNixDB to additionalPathstalyz1-1/+1
pathsInNixDB isn't a very accurate name when a Nix store image is built (virtualisation.useNixStoreImage); rename it to additionalPaths, which should be general enough to cover both cases.
2021-02-26nixos/containers: styling improvementsPatryk Wychowaniec1-5/+3
2021-01-10treewide: simplify pkgs.stdenv.lib -> pkgs.libDominik Xaver Hörl1-1/+1
The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
2019-11-26nixos/containers-bridge: Port test to pythonJacek Galowicz1-40/+39
2019-02-22Remove myself as maintainer from packagesFlorian Friesdorf1-1/+1
I'm currently not maintaining any packages.
2019-01-07nixos/containers: add bridge without address specifiedNikita Uvarov1-0/+17
According to systemd-nspawn(1), --network-bridge implies --network-veth, and --port option is supported only when private networking is enabled. Fixes #52417.
2018-10-30tests/docs: remove remnants of old allowPing default (#49198)Robin Gloster1-1/+0
This has been defaulting to true since 16.03, we don't need this code anymore, also the note in the documentation has been obsolete for quite a while.
2018-07-20[bot] nixos/*: remove unused arguments in lambdasvolth1-1/+1
2018-02-17nixos/tests: rename IP addresses/routes optionsrnhmjoj1-2/+2
2017-11-16nixos-container: Modify existing test to cover show-ip commandMartin Bornhold1-0/+6
Modified the existing test to check that the 'nixos-container show-ip' command can handle ipv4 addresses with submask in CIDR notation.
2017-02-17replace ping6 with pingJörg Thalheim1-1/+1
reason: after the upgrade of iputils from 20151218 to 20161105 functionality of ping6 and tracepath6 was merged into ping and tracepath. Ping is now mostly a drop-in replacment for ping6, except that selecting a specific interface is done by encoding it into the address (ex.: fe80::1%eth0) rather then specifing it with the `-I` flag.
2016-07-28containers: add myself to the maintainers of the testsArnold Krille1-1/+1
Seems like the right thing to do.
2016-04-02containers: Add more tests for ipv6 and hostbridgeArnold Krille1-0/+81
A testcase each for - declarative ipv6-only container Seems odd to define the container IPs with their prefix length attached. There should be a better way… - declarative bridged container Also fix the ping test by waiting for the container to start When the ping was executed, the container might not have finished starting. Or the host-side of the container wasn't finished with config. Waiting for 2 seconds in between fixes this.