-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minikube 1.26.1 has CRI-O 1.24.X according to its release notes - [0]. [0] - https://github.com/kubernetes/minikube/releases/tag/v1.26.1 Signed-off-by: Miguel Duarte Barroso <[email protected]>
- Loading branch information
Showing
2 changed files
with
58 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: e2e tests - crio | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- run: | | ||
pip3 install --user --upgrade j2cli | ||
j2 --version | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
|
||
- name: Start minikube | ||
uses: medyagh/setup-minikube@master | ||
with: | ||
minikube-version: 1.26.1 | ||
container-runtime: cri-o | ||
kubernetes-version: v1.24.3 | ||
cni: bridge | ||
|
||
- name: Deploy multus & the PRs contents | ||
run: hack/e2e-crio-cluster-setup.sh | ||
|
||
- name: Test - provisioning the examples | ||
run: e2e/test-provisioning-examples.sh | ||
|
||
- name: Test - execute golang based e2e tests | ||
env: | ||
KUBECONFIG: /home/runner/.kube/config | ||
run: make e2e/test | ||
|
||
- name: Cleanup cluster | ||
run: | | ||
minikube delete |
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