Skip to content

Commit 9d5ce12

Browse files
committed
Add kind cluster configs
Signed-off-by: Nabarun Pal <[email protected]>
1 parent 8f7fdca commit 9d5ce12

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
kind: Cluster
2+
apiVersion: kind.x-k8s.io/v1alpha4
3+
nodes:
4+
- role: control-plane
5+
image: kindest/node:v1.18.19@sha256:7af1492e19b3192a79f606e43c35fb741e520d195f96399284515f077b3b622c
6+
- role: worker
7+
image: kindest/node:v1.18.19@sha256:7af1492e19b3192a79f606e43c35fb741e520d195f96399284515f077b3b622c

.github/workflows/e2e.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
10+
python-version: [3.6, 3.7, 3.8, 3.9]
1111
steps:
1212
- uses: actions/checkout@v2
1313
with:
1414
submodules: true
15+
- name: Create Kind Cluster
16+
uses: helm/[email protected]
17+
version: v0.11.1
18+
config: .github/workflows/configs/cluster-1.18.yaml
1519
- name: Set up Python ${{ matrix.python-version }}
1620
uses: actions/[email protected]
1721
with:
@@ -21,4 +25,4 @@ jobs:
2125
python -m pip install --upgrade pip
2226
pip install -r requirements.txt
2327
- name: Run End to End tests
24-
run: ./scripts/kube-init.sh pytest -vvv -s []
28+
run: pytest -vvv -s []

0 commit comments

Comments
 (0)