bump kubernetes versions

This commit is contained in:
Bryton Hall 2023-01-04 11:51:43 -05:00
parent c2ed155e66
commit eac20b963a
4 changed files with 33922 additions and 4 deletions

View file

@ -1473,7 +1473,7 @@ let
options = {
"availableReplicas" = mkOption {
description = "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset. This is a beta field and enabled/disabled by StatefulSetMinReadySeconds feature gate.";
type = types.int;
type = (types.nullOr types.int);
};
"collisionCount" = mkOption {
description = "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.";
@ -1516,6 +1516,7 @@ let
config = {
"availableReplicas" = mkOverride 1002 null;
"collisionCount" = mkOverride 1002 null;
"conditions" = mkOverride 1002 null;
"currentReplicas" = mkOverride 1002 null;