2019-11-06 16:23:44 +03:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... } : {
|
2014-12-28 22:21:41 +03:00
|
|
|
name = "cadvisor";
|
2015-07-12 13:09:40 +03:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ offline ];
|
|
|
|
};
|
2014-12-28 22:21:41 +03:00
|
|
|
|
|
|
|
nodes = {
|
2018-07-20 23:56:59 +03:00
|
|
|
machine = { ... }: {
|
2014-12-28 22:21:41 +03:00
|
|
|
services.cadvisor.enable = true;
|
|
|
|
};
|
|
|
|
|
2018-07-20 23:56:59 +03:00
|
|
|
influxdb = { lib, ... }: with lib; {
|
2014-12-28 22:21:41 +03:00
|
|
|
services.cadvisor.enable = true;
|
|
|
|
services.cadvisor.storageDriver = "influxdb";
|
|
|
|
services.influxdb.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-11-06 16:23:44 +03:00
|
|
|
testScript = ''
|
|
|
|
start_all()
|
|
|
|
machine.wait_for_unit("cadvisor.service")
|
|
|
|
machine.succeed("curl http://localhost:8080/containers/")
|
2014-12-28 22:21:41 +03:00
|
|
|
|
2019-11-06 16:23:44 +03:00
|
|
|
influxdb.wait_for_unit("influxdb.service")
|
2016-09-15 15:28:41 +03:00
|
|
|
|
|
|
|
# create influxdb database
|
2019-11-06 16:23:44 +03:00
|
|
|
influxdb.succeed(
|
|
|
|
'curl -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE root"'
|
|
|
|
)
|
2016-09-15 15:28:41 +03:00
|
|
|
|
2019-11-06 16:23:44 +03:00
|
|
|
influxdb.wait_for_unit("cadvisor.service")
|
|
|
|
influxdb.succeed("curl http://localhost:8080/containers/")
|
2014-12-28 22:21:41 +03:00
|
|
|
'';
|
2015-07-12 13:09:40 +03:00
|
|
|
})
|