kubernetes: 1.30.2 -> 1.31.0

Updates feature gate tests to feature gates introduces in 1.31, assuming
they'll be around for a while.
This commit is contained in:
Christina Sørensen 2024-08-13 15:23:23 +00:00
parent aa4e34969b
commit 31321be124
No known key found for this signature in database
GPG Key ID: 26C542FD97F965CE
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ let
# NOTE: what featureGates are useful for testing might change in
# the future, see link below to find new ones
# https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
featureGates = {CPUManager = true; AppArmor= false;};
featureGates = {AnonymousAuthConfigurableEndpoints = true; ConsistentListFromCache = false;};
masterAddress = "${masterName}.${config.networking.domain}";
};
}

View File

@ -20,13 +20,13 @@
buildGoModule rec {
pname = "kubernetes";
version = "1.30.2";
version = "1.31.0";
src = fetchFromGitHub {
owner = "kubernetes";
repo = "kubernetes";
rev = "v${version}";
hash = "sha256-cxWltHCwb01QsIRSieXwYtImrSfvJLBhN3VIJkxOzX8=";
hash = "sha256-Oy638nIuz2xWVvMGWHUeI4T7eycXIfT+XHp0U7h8G9w=";
};
vendorHash = null;