Skip to content
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.34.3"
- "1.33.1"
- "1.32.5"
- "1.31.2"
Expand All @@ -29,6 +30,8 @@ jobs:
- "serial_integration_test"
- "integration_test"
include:
- kubernetes_version: "1.34.3"
kind_image: "kindest/node:v1.34.3@sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48"
- kubernetes_version: "1.33.1"
kind_image: "kindest/node:v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f"
- kubernetes_version: "1.32.5"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## next

## 3.9.1
- Test against k8s 1.34

## 3.9.0

- Remove Elasticsearch specific logic that was introduced in 3.8.0
Expand Down
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,12 @@ Krane provides support for official upstream supported versions [Kubernetes](htt

| Kubernetes version | Currently Tested? | Last officially supported in gem version |
|:------------------:|-------------------|:----------------------------------------:|
| 1.18 | No | 2.3.7 |
| 1.19 | No | 2.4.9 |
| 1.20 | No | 2.4.9 |
| 1.21 | No | 2.4.9 |
| 1.22 | No | 3.0.1 |
| 1.23 | No | 3.4.2 |
| 1.24 | No | 3.5.3 |
| 1.25 | No | -- |
| 1.26 | Yes | -- |
| 1.27 | Yes | -- |
| 1.28 | Yes | -- |
Comment on lines -87 to -97

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👆 these versions are no longer tested, see #992

| 1.29 | Yes | -- |
| 1.30 | Yes | -- |
| 1.31 | Yes | -- |
| 1.32 | Yes | -- |
| 1.33 | Yes | -- |
| 1.34 | 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.32.5@sha256:e3b2327e3a5ab8c76f5ece68936e4cafaa82edf58486b769727ab0b3b97a5b0d
image: kindest/node:v1.34.3@sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48
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.9.0"
VERSION = "3.9.1"
end