Add Minikube integration testing workflow (#160)

Move integration testing into pull_request action that is isolated to an action runner using minikube

Co-authored-by: David Gamero <davidgamero@microsoft.com>
This commit is contained in:
David Gamero
2021-12-07 16:21:34 -05:00
committed by GitHub
parent 18ff12030c
commit 5cbd4acaca
16 changed files with 575 additions and 52 deletions
@@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80