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 k8s versions for Chainsaw tests #308

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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/workflows/chainsaw-e2e-test-1.28.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'

- name: Vendor Dependencies
run: make vendor vendor.check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chainsaw-e2e-test-1.29.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'

- name: Vendor Dependencies
run: make vendor vendor.check
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/chainsaw-e2e-test-1.30.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This file was auto-generated by hack/generate-tests.sh
name: chainsaw e2e test 1.30
on: [push]
concurrency:
group: chainsaw-1.30-${{ github.ref }}-1
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: chainsaw e2e test 1.30
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Vendor Dependencies
run: make vendor vendor.check

- name: Docker cache
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('go.sum') }}}

- name: Run chainsaw tests 1.30
run: make chainsaw
env:
LATEST_KUBE_VERSION: '1.30'
AWS_ACCESS_KEY_ID: 'Dummy'
AWS_SECRET_ACCESS_KEY: 'Dummy'
AWS_DEFAULT_REGION: 'us-east-1'
43 changes: 43 additions & 0 deletions .github/workflows/chainsaw-e2e-test-1.31.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This file was auto-generated by hack/generate-tests.sh
name: chainsaw e2e test 1.31
on: [push]
concurrency:
group: chainsaw-1.31-${{ github.ref }}-1
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: chainsaw e2e test 1.31
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Vendor Dependencies
run: make vendor vendor.check

- name: Docker cache
uses: ScribeMD/[email protected]
with:
key: docker-${{ runner.os }}-${{ hashFiles('go.sum') }}}

- name: Run chainsaw tests 1.31
run: make chainsaw
env:
LATEST_KUBE_VERSION: '1.31'
AWS_ACCESS_KEY_ID: 'Dummy'
AWS_SECRET_ACCESS_KEY: 'Dummy'
AWS_DEFAULT_REGION: 'us-east-1'
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ PLATFORMS ?= linux_amd64 linux_arm64
# Generate chainsaw e2e tests for the following kind node versions
# TEST_KIND_NODES is not intended to be updated manually.
# Please edit LATEST_KIND_NODE instead and run 'make update-kind-nodes'.
TEST_KIND_NODES ?= 1.26.14,1.27.11,1.28.7,1.29.2
TEST_KIND_NODES ?= 1.28.7,1.29.2,1.30.8,1.31.4

LATEST_KUBE_VERSION ?= 1.29
LATEST_KIND_NODE ?= 1.29.2
LATEST_KUBE_VERSION ?= 1.31
LATEST_KIND_NODE ?= 1.31.4
REPO ?= provider-ceph

CROSSPLANE_VERSION ?= 1.18.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.26.14
image: kindest/node:v1.30.8
extraPortMappings:
- containerPort: 32566
hostPort: 32566
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.27.11
image: kindest/node:v1.31.4
extraPortMappings:
- containerPort: 32566
hostPort: 32566
Expand Down
2 changes: 1 addition & 1 deletion hack/generate-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'

- name: Vendor Dependencies
run: make vendor vendor.check
Expand Down
Loading