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 on 1.27.5 #113

Merged
merged 2 commits into from
Aug 30, 2023
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
2 changes: 1 addition & 1 deletion .github/latest-version.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

major=1
for minor in `seq 21 26`; do
for minor in `seq 21 27`; do
for patch in `seq 1 50`; do
code=`curl -s -I https://storage.googleapis.com/kubernetes-release/release/v$major.$minor.$patch/bin/linux/amd64/kubectl -o /dev/null -w "%{http_code}"`
if [ "$code" != "200" ]; then
Expand Down
9 changes: 5 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ String[] platforms = [
// Kubectl versions to test against
String[] kubectlVersions = [
'1.22.17',
'1.23.16',
'1.24.10',
'1.25.6',
'1.26.1',
'1.23.17',
'1.24.17',
'1.25.13',
'1.26.8',
'1.27.5'
]

// Not sure what this does yet
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ node {

## Prerequisites
* A jenkins installation running version 2.401.1 or higher (with jdk11 or jdk17).
* An executor with `kubectl` installed (tested against [v1.22 to v1.26][Jenkinsfile] included).
* An executor with `kubectl` installed (tested against [v1.22 to v1.27][Jenkinsfile] included).
* A Kubernetes cluster.

## How it works
Expand Down