feat(k8s): add support for k8s v1.14 and v1.15

This commit is contained in:
Jaka Hudoklin 2020-01-14 16:24:42 +00:00
parent c11ab72e7a
commit d14392d623
No known key found for this signature in database
GPG key ID: D1F18234B07BD6E2
3 changed files with 43394 additions and 2 deletions

View file

@ -200,8 +200,8 @@ in {
options.kubernetes = {
version = mkOption {
description = "Kubernetes version to use";
type = types.enum ["1.7" "1.8" "1.9" "1.10" "1.11" "1.12" "1.13"];
default = "1.13";
type = types.enum ["1.7" "1.8" "1.9" "1.10" "1.11" "1.12" "1.13" "1.14" "1.15"];
default = "1.15";
};
namespace = mkOption {