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

Update CRI-O and Kubernetes to v1.32 #211

Merged
merged 1 commit into from
Dec 20, 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ All packages are based on the static binary bundles provided by the CRI-O CI.
#### Define the Kubernetes version and used CRI-O stream

```bash
KUBERNETES_VERSION=v1.31
CRIO_VERSION=v1.31
KUBERNETES_VERSION=v1.32
CRIO_VERSION=v1.32
```

### Distributions using `rpm` packages
Expand Down Expand Up @@ -308,7 +308,7 @@ curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bash -s -- -a
It is also possible to select a specific git SHA or tag by:

```shell
curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bash -s -- -t v1.31.0
curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bash -s -- -t v1.32.0
```

The above script resolves to the download URL of the static binary bundle
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
dependencies:
- name: CRI-O
version: v1.31
version: v1.32
refPaths:
- path: README.md
match: CRIO_VERSION
Expand All @@ -15,7 +15,7 @@ dependencies:
match: ZEITGEIST_VERSION

- name: Kubernetes test version
version: v1.31
version: v1.32
refPaths:
- path: test/scripts/versions.sh
match: KUBERNETES_VERSION
Expand Down
2 changes: 1 addition & 1 deletion test/deb/lima.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provision:
test -e /etc/kubernetes/admin.conf && exit 0

# Package configs
KUBERNETES_VERSION=v1.31
KUBERNETES_VERSION=v1.32
PROJECT_PATH=prerelease:/main

curl -fsSL https://pkgs.k8s.io/core:/stable:/$KUBERNETES_VERSION/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
Expand Down
2 changes: 1 addition & 1 deletion test/rpm/lima.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ provision:
test -e /etc/kubernetes/admin.conf && exit 0

# Package configs
KUBERNETES_VERSION=v1.31
KUBERNETES_VERSION=v1.32
PROJECT_PATH=prerelease:/main

cat <<EOF | tee /etc/yum.repos.d/kubernetes.repo
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# shellcheck disable=SC2034 # variables are used in sourcing scripts

# Package configs
KUBERNETES_VERSION=v1.31
KUBERNETES_VERSION=v1.32
# allows to be set externally e.g. from a Dockerfile
PROJECT_PATH=${PROJECT_PATH:-prerelease:/main}
Loading