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

Test against Kubernetes v1.31 #968

Merged
merged 1 commit into from
Dec 3, 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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "3.0.4"
- "2.7.6"
kubernetes_version:
- "1.31.2"
- "1.30.0"
- "1.29.4"
- "1.28.0"
Expand All @@ -29,6 +30,8 @@ jobs:
- "serial_integration_test"
- "integration_test"
include:
- kubernetes_version: "1.31.2"
kind_image: "kindest/node:v1.31.2@sha256:18fbefc20a7113353c7b75b5c869d7145a6abd6269154825872dc59c1329912e"
- kubernetes_version: "1.30.0"
kind_image: "kindest/node:v1.30.0@sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e"
- kubernetes_version: "1.29.4"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## next

## 3.6.3

- Test against k8s 1.31

## 3.6.2

- Pinning `stats-instrument` to < 3.9 to avoid breaking changes.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ Krane provides support for official upstream supported versions [Kubernetes](htt
| 1.28 | Yes | -- |
| 1.29 | Yes | -- |
| 1.30 | Yes | -- |
| 1.31 | Yes | -- |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ up:
- podman
- kind:
name: krane
image: kindest/node:v1.28.0@sha256:dad5a6238c5e41d7cac405fae3b5eda2ad1de6f1190fa8bfc64ff5bb86173213
image: kindest/node:v1.31.2@sha256:18fbefc20a7113353c7b75b5c869d7145a6abd6269154825872dc59c1329912e
commands:
test:
run: bin/test unit_test && bin/test cli_test && bin/test serial_integration_test && bin/test integration_test
Expand Down
2 changes: 1 addition & 1 deletion lib/krane/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Krane
VERSION = "3.6.2"
VERSION = "3.6.3"
end
Loading