wip k3s support

This commit is contained in:
Xavier Zwirtz 2020-01-28 16:37:02 -06:00 committed by David Arnold
parent 7a93fdce23
commit 0f8a36710c
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08
5 changed files with 151 additions and 7 deletions

View file

@ -58,6 +58,12 @@ in {
default = null;
};
distro = mkOption {
description = "Kubernetes distro to run the test with. Defaults to 'nixos', other option is 'k3s'";
type = types.nullOr types.str;
default = null;
};
extraConfiguration = mkOption {
description = "Extra configuration for running test";
type = types.unspecified;