Skip to content

Commit

Permalink
loxilb-iogh-87: CICD added - Client-to-LoxiLB IPsec with HA in K8s
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-netlox committed Sep 23, 2024
1 parent 0b3e787 commit 269ede3
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/k8s-calico-ipsec-ha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: K8s-Calico-Cluster-IPSec-HA-Sanity-CI
on:
schedule:
# Runs "At 19:00 UTC every day-of-week"
- cron: '0 19 * * *'
workflow_dispatch:
inputs:
testName:
description: 'Test Run-Name'
required: true
default: 'k8s-calico-cluster-ipsec-ha'
jobs:
test-runner:
name: k8s-calico-cluster-ipsec-ha-sanity
runs-on: [self-hosted, large]
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-ipsec-ha
./config.sh
./validation_with_sctp.sh
cd -
- name: Clean test-bed
if: success() || failure()
run: |
cd cicd/k8s-calico-ipsec-ha || true
./rmconfig.sh
cd -

0 comments on commit 269ede3

Please sign in to comment.