Skip to content

Commit

Permalink
Merge pull request #415 from TrekkieCoder/main
Browse files Browse the repository at this point in the history
PR - chore:cicd scritps and readme changes
  • Loading branch information
UltraInstinct14 authored Oct 17, 2023
2 parents 21209fa + 0699105 commit 439840e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ loxilb is an open source hyper-scale software load-balancer for cloud-native wor
- Service type load-balancer for kubernetes
* L4/NAT stateful loadbalancer
* NAT44, NAT66, NAT64 with One-ARM, FullNAT, DSR etc
* Support for TCP, UDP, SCTP (w/ multi-homing), FTP, TFTP etc
* Support for TCP, UDP, SCTP (w/ multi-homing), QUIC, FTP, TFTP etc
* High-availability support with hitless/maglev/cgnat clustering
* Full compliance for K8s loadbalancer Spec
* Multi-cluster support
- Extensive and scalable liveness probes for cloud-native environments
- High-perf replacement for the *aging* iptables/ipvs
- L7 proxy support
- L7 proxy support - HTTP1.0, 1.1, 2.0 etc
- Telco/5G/6G friendly features
* GTP tunnels as first class citizens
* LB support on various interfaces - N2, N4, E2 etc
* Optimized SRv6 implementation
* Support for UL-CL with LB, QFI and other utility extensions

Expand Down
8 changes: 4 additions & 4 deletions cicd/k3s-flannel-incluster/validation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ else
exit 1
fi

out=$(vagrant ssh host -c "socat -T10 - SCTP:$extIP:55004,bind=192.168.90.9")
out=$(vagrant ssh host -c "socat -T10 - sctp:$extIP:55004,bind=192.168.90.9")
if [[ ${out} == *"server1"* ]]; then
echo "k3s-flannel-cluster (kube-loxilb) sctp [OK]"
else
Expand All @@ -50,11 +50,11 @@ else
exit 1
fi

out=$(vagramt ssh host -c "socat -T10 - SCTP:$extIP:57004,bind=192.168.90.9")
out=$(vagrant ssh host -c "socat -T10 - sctp:$extIP:57004,bind=192.168.90.9")
if [[ ${out} == *"server1"* ]]; then
echo "k3s-flannel-cluster (kube-loxilb) onearm-sctp [OK]"
echo "k3s-flannel-cluster (kube-loxilb) default-sctp [OK]"
else
echo "k3s-flannel-cluster (kube-loxilb) onerarm-sctp [FAILED]"
echo "k3s-flannel-cluster (kube-loxilb) default-sctp [FAILED]"
print_debug_info
exit 1
fi
Expand Down

0 comments on commit 439840e

Please sign in to comment.