Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit ddecf00

Browse files
committed
Start k8s cluster to run intergrations tests on
1 parent 33ac7c6 commit ddecf00

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,24 @@ jobs:
191191
path: ./integrations/nmap/scanner/
192192
# Note: not prefixed with a "v" as this seems to match nmap versioning standards
193193
tags: "7.80,7.80-1,latest"
194+
integrationTests:
195+
name: "Integration Tests"
196+
needs:
197+
- scannerImages
198+
- persistenceImages
199+
- parserImages
200+
- operator
201+
- lurcher
202+
runs-on: ubuntu-latest
203+
steps:
204+
- uses: actions/checkout@master
205+
- name: "Start kind cluster"
206+
run: |
207+
kind create cluster --image kindest/node:v1.18.0 --wait 60s
208+
- name: "Inspect kind cluster"
209+
run: |
210+
kubectl config current-context
211+
kubectl get node
212+
- name: "Delete kind cluster"
213+
run: |
214+
kind delete cluster

0 commit comments

Comments
 (0)