Skip to content

Commit

Permalink
1.28 stable work: adjust enums, start building 1.29 (#1403)
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess committed Aug 18, 2023
1 parent 04afa7c commit a626fb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
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.27"
K8S_STABLE_VERSION = "1.28"

# 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.29"

# Lowest K8S SEMVER to process, this is usually K8S_STABLE_VERSION - 4
K8S_STARTING_SEMVER = "1.23.0"
K8S_STARTING_SEMVER = "1.24.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.29": "go/1.20/stable",
"1.28": "go/1.20/stable",
"1.27": "go/1.20/stable",
"1.26": "go/1.19/stable",
Expand Down Expand Up @@ -76,6 +77,7 @@
("1.26", ["1.26/stable", "1.26/candidate", "1.26/beta", "1.26/edge"]),
("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/edge"]),
]
SNAP_K8S_TRACK_MAP = dict(SNAP_K8S_TRACK_LIST)

Expand All @@ -94,6 +96,7 @@
"1.26": "ppa:k8s-maintainers/1.26",
"1.27": "ppa:k8s-maintainers/1.27",
"1.28": "ppa:k8s-maintainers/1.28",
"1.29": "ppa:k8s-maintainers/1.29",
}


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.25', '1.26', '1.27', '1.28']
version: ['1.26', '1.27', '1.28', '1.29']
jobs:
- 'build-release-cdk-addons-{version}'

Expand Down

0 comments on commit a626fb7

Please sign in to comment.