Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.29 stable work: adjust enums, start building 1.30 #1481

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions 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.28"
K8S_STABLE_VERSION = "1.29"

# Next MAJOR.MINOR
# This controls whether or not we publish pre-release snaps in our channels.
Expand All @@ -20,7 +20,7 @@
K8S_NEXT_VERSION = "1.30"

# Lowest K8S SEMVER to process, this is usually K8S_STABLE_VERSION - 4
K8S_STARTING_SEMVER = "1.24.0"
K8S_STARTING_SEMVER = "1.25.0"

# Supported arches
K8S_SUPPORT_ARCHES = ["amd64", "ppc64el", "s390x", "arm64"]
Expand All @@ -44,6 +44,7 @@

# Kubernetes build source to go version map
K8S_GO_MAP = {
"1.30": "go/1.21/stable",
"1.29": "go/1.21/stable",
"1.28": "go/1.20/stable",
"1.27": "go/1.20/stable",
Expand Down Expand Up @@ -78,6 +79,7 @@
("1.27", ["1.27/stable", "1.27/candidate", "1.27/beta", "1.27/edge"]),
("1.28", ["1.28/stable", "1.28/candidate", "1.28/beta", "1.28/edge"]),
("1.29", ["1.29/stable", "1.29/candidate", "1.29/beta", "1.29/edge"]),
("1.30", ["1.30/edge"]),
]
SNAP_K8S_TRACK_MAP = dict(SNAP_K8S_TRACK_LIST)

Expand All @@ -97,6 +99,7 @@
"1.27": "ppa:k8s-maintainers/1.27",
"1.28": "ppa:k8s-maintainers/1.28",
"1.29": "ppa:k8s-maintainers/1.29",
"1.30": "ppa:k8s-maintainers/1.30",
}


Expand Down
2 changes: 1 addition & 1 deletion jobs/build-snaps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
- project:
name: build-release-snaps
arch: 'amd64'
version: ['1.26', '1.27', '1.28', '1.29']
version: ['1.27', '1.28', '1.29', '1.30']
jobs:
- 'build-release-cdk-addons-{version}'

Expand Down
Loading