nixos/flannel: fix flannel nixos test, add test to all-tests.nix
This commit is contained in:
parent
9522ca5ce9
commit
adc9da6178
@ -73,6 +73,7 @@ in
|
|||||||
ferm = handleTest ./ferm.nix {};
|
ferm = handleTest ./ferm.nix {};
|
||||||
firefox = handleTest ./firefox.nix {};
|
firefox = handleTest ./firefox.nix {};
|
||||||
firewall = handleTest ./firewall.nix {};
|
firewall = handleTest ./firewall.nix {};
|
||||||
|
flannel = handleTestOn ["x86_64-linux"] ./flannel.nix {};
|
||||||
flatpak = handleTest ./flatpak.nix {};
|
flatpak = handleTest ./flatpak.nix {};
|
||||||
fsck = handleTest ./fsck.nix {};
|
fsck = handleTest ./fsck.nix {};
|
||||||
fwupd = handleTestOn ["x86_64-linux"] ./fwupd.nix {}; # libsmbios is unsupported on aarch64
|
fwupd = handleTestOn ["x86_64-linux"] ./fwupd.nix {}; # libsmbios is unsupported on aarch64
|
||||||
|
@ -21,8 +21,9 @@ import ./make-test.nix ({ pkgs, ...} : rec {
|
|||||||
services = {
|
services = {
|
||||||
etcd = {
|
etcd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
listenClientUrls = ["http://etcd:2379"];
|
listenClientUrls = ["http://0.0.0.0:2379"]; # requires ip-address for binding
|
||||||
listenPeerUrls = ["http://etcd:2380"];
|
listenPeerUrls = ["http://0.0.0.0:2380"]; # requires ip-address for binding
|
||||||
|
advertiseClientUrls = ["http://etcd:2379"];
|
||||||
initialAdvertisePeerUrls = ["http://etcd:2379"];
|
initialAdvertisePeerUrls = ["http://etcd:2379"];
|
||||||
initialCluster = ["etcd=http://etcd:2379"];
|
initialCluster = ["etcd=http://etcd:2379"];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user