3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #111418 from helsinki-systems/k3s

nixos/k3s: add extraFlags type
This commit is contained in:
Sandro 2021-01-31 15:02:31 +01:00 committed by GitHub
commit 0fc3bc21ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,7 @@ in
extraFlags = mkOption {
description = "Extra flags to pass to the k3s command.";
type = types.str;
default = "";
example = "--no-deploy traefik --cluster-cidr 10.24.0.0/16";
};