nixos/tests/kubernetes: bump featureGates used in test, to work with v1.34

Changed files
+2 -2
nixos
tests
kubernetes
+2 -2
nixos/tests/kubernetes/base.nix
···
# the future, see link below to find new ones
# https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
featureGates = {
-
AnonymousAuthConfigurableEndpoints = true;
-
ConsistentListFromCache = false;
};
masterAddress = "${masterName}.${config.networking.domain}";
};
···
# the future, see link below to find new ones
# https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/
featureGates = {
+
AllowParsingUserUIDFromCertAuth = true;
+
ClusterTrustBundle = false;
};
masterAddress = "${masterName}.${config.networking.domain}";
};