1 import ./make-test-python.nix ({ pkgs, lib, ...} : {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ cameronnemo ];
7 nodes.machine = { pkgs, ... }: {
8 services.envoy.enable = true;
9 services.envoy.settings = {
11 access_log_path = "/dev/null";
15 address = "127.0.0.1";
29 machine.wait_for_unit("envoy.service")
30 machine.wait_for_open_port(9901)
31 machine.wait_until_succeeds("curl -fsS localhost:9901/ready")