Skip to content

Commit

Permalink
Create k8s-calico-ipvs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TrekkieCoder authored Sep 1, 2023
1 parent 095e06a commit 84af802
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/k8s-calico-ipvs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: K8s-Calico-Cluster-IPVS-Sanity-CI
on:
#schedule:
# Runs "At 13:00 UTC every day-of-week"
#- cron: '0 13 * * *'
workflow_dispatch:
inputs:
testName:
description: 'Test Run-Name'
required: true
default: 'k8s-calico-cluster-ipvs'
jobs:
test-runner:
name: k8s-calico-cluster-ipvs-sanity
runs-on: self-hosted
if: github.repository == 'loxilb-io/loxilb'
&& github.event.inputs.tagName == ''
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive

- name: Run the test
run: |
cd cicd/k8s-calico-ipvs
./config.sh
./validation.sh
cd -
- name: Clean test-bed
if: success() || failure()
run: |
cd cicd/k8s-calico-ipvs || true
./rmconfig.sh
cd -

0 comments on commit 84af802

Please sign in to comment.