Skip to content

Commit

Permalink
Merge pull request #1123 from aramase/ci-v1.26.0
Browse files Browse the repository at this point in the history
ci: enable tests with kubernetes v1.26
  • Loading branch information
k8s-ci-robot committed Dec 14, 2022
2 parents fdb2901 + 47bd321 commit 510bb0b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: e2e_mock_provider_tests
on:
on:
workflow_dispatch:
inputs:
registry:
Expand All @@ -24,32 +24,32 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
KUBERNETES_VERSION: ["v1.22.13", "v1.23.10", "v1.24.4", "v1.25.0"]
KUBERNETES_VERSION: ["v1.23.13", "v1.24.7", "v1.25.3", "v1.26.0"]
steps:
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
with:
submodules: true
fetch-depth: 0
fetch-depth: 0
- name: Setup BATS
# pinning to the sha af9a00deb21b5d795cabfeaa8d9060410377686d from https://github.com/mig4/setup-bats/releases/tag/v1.2.0
uses: mig4/setup-bats@af9a00deb21b5d795cabfeaa8d9060410377686d
with:
bats-version: 1.4.1
bats-version: 1.4.1
- name: Setup Kind
# pinning to the sha aa272fe2a7309878ffc2a81c56cfe3ef108ae7d0 from https://github.com/engineerd/setup-kind/releases/tag/v0.5.0
uses: engineerd/setup-kind@aa272fe2a7309878ffc2a81c56cfe3ef108ae7d0
with:
version: "v0.15.0"
version: "v0.17.0"
image: "kindest/node:${{ matrix.KUBERNETES_VERSION }}"
- name: Test
run: |
# GH action sets this var by default. We need to explicitly unset it so that build commit hash is not appended to image tag.
unset CI
make e2e-helm-deploy e2e-mock-provider-container e2e-provider-deploy e2e-provider
env:
env:
REGISTRY: ${{ github.event.inputs.registry }}
IMAGE_NAME: ${{ github.event.inputs.driverImageName }}
CRD_IMAGE_NAME: ${{ github.event.inputs.crdImageName }}
IMAGE_NAME: ${{ github.event.inputs.driverImageName }}
CRD_IMAGE_NAME: ${{ github.event.inputs.crdImageName }}
IMAGE_VERSION: ${{ github.event.inputs.imageVersion }}

0 comments on commit 510bb0b

Please sign in to comment.