Skip to content

Commit

Permalink
1.31 stable work: adjust enums, start building 1.32 (#1577)
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess authored Sep 9, 2024
1 parent 053c6fa commit fe8d287
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cilib/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Current supported STABLE K8s MAJOR.MINOR release. This determines what the
# latest/stable channel is set to. It should be updated whenever a new CK
# major.minor is GA.
K8S_STABLE_VERSION = "1.30"
K8S_STABLE_VERSION = "1.31"

# Next MAJOR.MINOR
# This controls whether or not we publish pre-release snaps in our channels.
Expand Down Expand Up @@ -84,6 +84,7 @@
("1.29", ["1.29/stable", "1.29/candidate", "1.29/beta", "1.29/edge"]),
("1.30", ["1.30/stable", "1.30/candidate", "1.30/beta", "1.30/edge"]),
("1.31", ["1.31/stable", "1.31/candidate", "1.31/beta", "1.31/edge"]),
("1.32", ["1.32/edge"]),
]
SNAP_K8S_TRACK_MAP = dict(SNAP_K8S_TRACK_LIST)

Expand All @@ -105,6 +106,7 @@
"1.29": "ppa:k8s-maintainers/1.29",
"1.30": "ppa:k8s-maintainers/1.30",
"1.31": "ppa:k8s-maintainers/1.31",
"1.32": "ppa:k8s-maintainers/1.32",
}


Expand Down

0 comments on commit fe8d287

Please sign in to comment.