-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test workflow * use kustomization file unique to end-to-end tests * move commands to make setup * set correct Kubernetes version * fix race condition in test * fix image in deploy example
- Loading branch information
Showing
13 changed files
with
722 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
end-to-end: | ||
name: Test | ||
strategy: | ||
matrix: | ||
kubernetes-version: ['v1.29.7', 'v1.30.6', 'v1.31.0'] | ||
permissions: | ||
contents: read | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Install Minikube | ||
uses: medyagh/[email protected] | ||
with: | ||
start: false | ||
- name: Setup for test | ||
run: END_TO_END_TEST_KUBERNETES_VERSION=${{ matrix.kubernetes-version }} make setup | ||
- name: Run end-to-end tests | ||
run: make test-end-to-end |
Oops, something went wrong.