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;

16663
modules/generated/v1.25.nix Normal file

File diff suppressed because it is too large Load diff

17251
modules/generated/v1.26.nix Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,14 @@
let
full = {
# https://kubernetes.io/releases/patch-releases
"1.19.16" = "sha256:15vhl0ibd94rqkq678cf5cl46dxmnanjpq0lmsx15i8l82fnhz35"; # final
"1.20.15" = "sha256:0g4hrdkzrr1vgjvakxg5n9165yiizb0vga996a3qjjh3nim4wdf7"; # final
"1.21.14" = "sha256:0g3n7q00z89d6li4wilp23z8dxcmdydc3r5g2spmdd82728rav2b"; # final
"1.22.12" = "sha256:089rnsdk7lc6n3isvnha26nbwjmm1y4glllqnxhj8g9fd3py5jfw";
"1.23.9" = "sha256:1wljknhnlw6q8s2rxq8fznjax5z63q5bqci2klm65f46n2vayr9d";
"1.24.3" = "sha256:0fp5hbqk2q0imrfi4mwp1ia0bmn0xnl6hcr07y52q2cp41pmfhqd";
"1.22.17" = "sha256:089rnsdk7lc6n3isvnha26nbwjmm1y4glllqnxhj8g9fd3py5jfw"; # final
"1.23.15" = "sha256:0cw93f46gs1yqwdvfjbbm7kgk85hk6x6f1q9nz8mq352kw4m9zqn";
"1.24.9" = "sha256:0fp5hbqk2q0imrfi4mwp1ia0bmn0xnl6hcr07y52q2cp41pmfhqd";
"1.25.5" = "sha256:0811l7j769fa2a329a1kf5lqkaib0bz4c8pbfzg6si0d7614cdcn";
"1.26.0" = "sha256:0q6xymd642fdpjh8qn8bals0k0v9hcclmm0v1ya30mxlvk0mqk50";
};
in {
inherit full;