Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR - chore:cicd scritps and readme changes #415

Merged
merged 4 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading