-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #360 from TrekkieCoder/main
PR : cicd for loxilb in-cluster mode
- Loading branch information
Showing
15 changed files
with
484 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
workers = (ENV['WORKERS'] || "2").to_i | ||
#box_name = (ENV['VAGRANT_BOX'] || "ubuntu/focal64") | ||
box_name = (ENV['VAGRANT_BOX'] || "sysnet4admin/Ubuntu-k8s") | ||
box_version = "0.7.1" | ||
Vagrant.configure("2") do |config| | ||
config.vm.box = "#{box_name}" | ||
config.vm.box_version = "#{box_version}" | ||
|
||
#config.vm.define "loxilb" do |loxilb| | ||
# loxilb.vm.hostname = 'llb1' | ||
#loxilb.vm.network "forwarded_port", guest: 55002, host: 5502, protocol: "tcp" | ||
# loxilb.vm.network :private_network, ip: "192.168.80.9", :netmask => "255.255.255.0" | ||
# loxilb.vm.network :private_network, ip: "192.168.90.9", :netmask => "255.255.255.0" | ||
# loxilb.vm.provision :shell, :path => "loxilb.sh" | ||
# loxilb.vm.provider :virtualbox do |vbox| | ||
# vbox.customize ["modifyvm", :id, "--memory", 6000] | ||
# vbox.customize ["modifyvm", :id, "--cpus", 4] | ||
# end | ||
#end | ||
|
||
config.vm.define "master" do |master| | ||
master.vm.hostname = 'master' | ||
master.vm.network :private_network, ip: "192.168.80.10", :netmask => "255.255.255.0" | ||
master.vm.network :private_network, ip: "192.168.90.10", :netmask => "255.255.255.0" | ||
master.vm.provision :shell, :path => "master.sh" | ||
master.vm.provider :virtualbox do |vbox| | ||
vbox.customize ["modifyvm", :id, "--memory", 8192] | ||
vbox.customize ["modifyvm", :id, "--cpus", 4] | ||
end | ||
end | ||
|
||
(1..workers).each do |node_number| | ||
config.vm.define "worker#{node_number}" do |worker| | ||
worker.vm.hostname = "worker#{node_number}" | ||
ip = node_number + 100 | ||
worker.vm.network :private_network, ip: "192.168.80.#{ip}", :netmask => "255.255.255.0" | ||
worker.vm.provision :shell, :path => "worker.sh" | ||
worker.vm.provider :virtualbox do |vbox| | ||
vbox.customize ["modifyvm", :id, "--memory", 4096] | ||
vbox.customize ["modifyvm", :id, "--cpus", 2] | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
vagrant global-status | grep -i virtualbox | cut -f 1 -d ' ' | xargs -L 1 vagrant destroy -f | ||
vagrant up | ||
sudo ip route add 123.123.123.1 via 192.168.90.10 || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: v1 | ||
clusters: | ||
- cluster: | ||
certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJkekNDQVIyZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQWpNU0V3SHdZRFZRUUREQmhyTTNNdGMyVnkKZG1WeUxXTmhRREUyT0RrNU1EWTNOalV3SGhjTk1qTXdOekl4TURJek1qUTFXaGNOTXpNd056RTRNREl6TWpRMQpXakFqTVNFd0h3WURWUVFEREJock0zTXRjMlZ5ZG1WeUxXTmhRREUyT0RrNU1EWTNOalV3V1RBVEJnY3Foa2pPClBRSUJCZ2dxaGtqT1BRTUJCd05DQUFUcHh0MUlUT09RbXNSMFFJUGlYaVBCRkhBZHkvVUVaZTdBQzZEalNhcDQKZjV4Y3ZjYW9VaG1lUmM5eFRTTEpaSDdoelFHVXFVYkZjVGdIUTgzL1o0bndvMEl3UURBT0JnTlZIUThCQWY4RQpCQU1DQXFRd0R3WURWUjBUQVFIL0JBVXdBd0VCL3pBZEJnTlZIUTRFRmdRVU9VdGRvSlZxV1djR0gxZ3hUMmxGCmlkOUVMSmt3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUlnU21ucmRPS2hCWlZ0clJEZWxBc1lnUXBuZmhQdVJqdHEKRXlGS3JtKzk5TkFDSVFDcDlHbm9hNUpnQVpGSnFydFdZN1B1ZklIaDV4TmRJU1FqTkl5ZVg0WEFxUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K | ||
server: https://192.168.80.10:6443 | ||
name: default | ||
contexts: | ||
- context: | ||
cluster: default | ||
user: default | ||
name: default | ||
current-context: default | ||
kind: Config | ||
preferences: {} | ||
users: | ||
- name: default | ||
user: | ||
client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJrVENDQVRlZ0F3SUJBZ0lJSWFMZzBLSnJGUDR3Q2dZSUtvWkl6ajBFQXdJd0l6RWhNQjhHQTFVRUF3d1kKYXpOekxXTnNhV1Z1ZEMxallVQXhOamc1T1RBMk56WTFNQjRYRFRJek1EY3lNVEF5TXpJME5Wb1hEVEkwTURjeQpNREF5TXpJME5Wb3dNREVYTUJVR0ExVUVDaE1PYzNsemRHVnRPbTFoYzNSbGNuTXhGVEFUQmdOVkJBTVRESE41CmMzUmxiVHBoWkcxcGJqQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJOV2NsbnhqQVNHYmI3Z2oKWUVwT0g2M2UxcEczNkRMWllvMHNQVUxrZUVDaUE0SzVLZGxSdnF6aWFGQTRjcjRrdXFoOExRcHl3UXB1ZElsMgp2Sy91V2pTalNEQkdNQTRHQTFVZER3RUIvd1FFQXdJRm9EQVRCZ05WSFNVRUREQUtCZ2dyQmdFRkJRY0RBakFmCkJnTlZIU01FR0RBV2dCUmcrVE5MZzc2Qi9DZWRBT3M5dGVFeEoxbjk4akFLQmdncWhrak9QUVFEQWdOSUFEQkYKQWlFQWlHNm50N0phaUVNY1pLc2NFMEJWTWxjcDdPM2hwOVNjRlVnSGkyL1hJclVDSUh2aWlXaDVmRGFiSERHMgpzekR6Nm9WL2VMTnFJS0ZBSGFQblJEVGdhUHY1Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJkakNDQVIyZ0F3SUJBZ0lCQURBS0JnZ3Foa2pPUFFRREFqQWpNU0V3SHdZRFZRUUREQmhyTTNNdFkyeHAKWlc1MExXTmhRREUyT0RrNU1EWTNOalV3SGhjTk1qTXdOekl4TURJek1qUTFXaGNOTXpNd056RTRNREl6TWpRMQpXakFqTVNFd0h3WURWUVFEREJock0zTXRZMnhwWlc1MExXTmhRREUyT0RrNU1EWTNOalV3V1RBVEJnY3Foa2pPClBRSUJCZ2dxaGtqT1BRTUJCd05DQUFSUDZTeWNhdTZOSlVRMU5iTSttSk9MakVCazB4OEpzbXh1aDNITWloalIKTU5VZ1JyS0w1ZUxqTzdlTStGcjNMSWs5eGc4MTNuVDJBdFFzUE5tQmo3Yk9vMEl3UURBT0JnTlZIUThCQWY4RQpCQU1DQXFRd0R3WURWUjBUQVFIL0JBVXdBd0VCL3pBZEJnTlZIUTRFRmdRVVlQa3pTNE8rZ2Z3bm5RRHJQYlhoCk1TZFovZkl3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUlnR2NsVzdadlVFZmlrQnBPQUVkUmFmNVgrMkRmTWxoaXEKUXdhb3RJQ3oydXdDSURicjNXM2xFekp3V0hyKzV1aGY2UzVHMFBMNXI1YnVEYkQ2ZW9pZHUxZ20KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= | ||
client-key-data: LS0tLS1CRUdJTiBFQyBQUklWQVRFIEtFWS0tLS0tCk1IY0NBUUVFSVBsdWlmRlZvTW9Tb1phTlRwWmlkcitJa2pXSFJrNGNxZVNnL3dKT3YvdkdvQW9HQ0NxR1NNNDkKQXdFSG9VUURRZ0FFMVp5V2ZHTUJJWnR2dUNOZ1NrNGZyZDdXa2Jmb010bGlqU3c5UXVSNFFLSURncmtwMlZHKwpyT0pvVURoeXZpUzZxSHd0Q25MQkNtNTBpWGE4cis1YU5BPT0KLS0tLS1FTkQgRUMgUFJJVkFURSBLRVktLS0tLQo= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: kube-loxilb | ||
namespace: kube-system | ||
--- | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kube-loxilb | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- nodes | ||
verbs: | ||
- get | ||
- watch | ||
- list | ||
- patch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- pods | ||
verbs: | ||
- get | ||
- watch | ||
- list | ||
- patch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- endpoints | ||
- services | ||
- services/status | ||
verbs: | ||
- get | ||
- watch | ||
- list | ||
- patch | ||
- update | ||
- apiGroups: | ||
- discovery.k8s.io | ||
resources: | ||
- endpointslices | ||
verbs: | ||
- get | ||
- watch | ||
- list | ||
- apiGroups: | ||
- authentication.k8s.io | ||
resources: | ||
- tokenreviews | ||
verbs: | ||
- create | ||
- apiGroups: | ||
- authorization.k8s.io | ||
resources: | ||
- subjectaccessreviews | ||
verbs: | ||
- create | ||
--- | ||
kind: ClusterRoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kube-loxilb | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: kube-loxilb | ||
subjects: | ||
- kind: ServiceAccount | ||
name: kube-loxilb | ||
namespace: kube-system | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: kube-loxilb | ||
namespace: kube-system | ||
labels: | ||
app: loxilb | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: loxilb | ||
template: | ||
metadata: | ||
labels: | ||
app: loxilb | ||
spec: | ||
hostNetwork: true | ||
dnsPolicy: ClusterFirstWithHostNet | ||
tolerations: | ||
- effect: NoSchedule | ||
operator: Exists | ||
# Mark the pod as a critical add-on for rescheduling. | ||
- key: CriticalAddonsOnly | ||
operator: Exists | ||
- effect: NoExecute | ||
operator: Exists | ||
priorityClassName: system-node-critical | ||
serviceAccountName: kube-loxilb | ||
terminationGracePeriodSeconds: 0 | ||
containers: | ||
- name: kube-loxilb | ||
image: ghcr.io/loxilb-io/kube-loxilb:debug | ||
imagePullPolicy: Always | ||
command: | ||
- /bin/kube-loxilb | ||
args: | ||
#- --loxiURL=http://192.168.80.10:11111 | ||
- --externalCIDR=123.123.123.1/24 | ||
#- --monitor | ||
#- --setBGP | ||
#- --setLBMode=1 | ||
#- --config=/opt/loxilb/agent/kube-loxilb.conf | ||
resources: | ||
requests: | ||
cpu: "100m" | ||
memory: "50Mi" | ||
limits: | ||
cpu: "100m" | ||
memory: "50Mi" | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: ["NET_ADMIN", "NET_RAW"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: loxilb-lb | ||
namespace: kube-system | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: loxilb-app | ||
template: | ||
metadata: | ||
name: loxilb-lb | ||
labels: | ||
app: loxilb-app | ||
spec: | ||
hostNetwork: true | ||
dnsPolicy: ClusterFirstWithHostNet | ||
tolerations: | ||
- key: "node-role.kubernetes.io/master" | ||
operator: Exists | ||
- key: "node-role.kubernetes.io/control-plane" | ||
operator: Exists | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: "node-role.kubernetes.io/master" | ||
operator: Exists | ||
- key: "node-role.kubernetes.io/control-plane" | ||
operator: Exists | ||
containers: | ||
- name: loxilb-app | ||
image: "ghcr.io/loxilb-io/loxilb:latest" | ||
command: [ "/root/loxilb-io/loxilb/loxilb" ] | ||
ports: | ||
- containerPort: 11111 | ||
securityContext: | ||
privileged: true | ||
capabilities: | ||
add: | ||
- SYS_ADMIN | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: loxilb-lb-service | ||
namespace: kube-system | ||
spec: | ||
clusterIP: None | ||
selector: | ||
app: loxilb-app | ||
ports: | ||
- name: loxilb-app | ||
port: 11111 | ||
targetPort: 11111 | ||
protocol: TCP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export MASTER_IP=$(ip a |grep global | grep -v '10.0.2.15' | grep -v '192.168.90' | grep '192.168.80' | awk '{print $2}' | cut -f1 -d '/') | ||
|
||
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--disable traefik --disable servicelb --disable-cloud-controller \ | ||
--node-ip=${MASTER_IP} --node-external-ip=${MASTER_IP} \ | ||
--bind-address=${MASTER_IP}" sh - | ||
|
||
echo $MASTER_IP > /vagrant/master-ip | ||
sudo cp /var/lib/rancher/k3s/server/node-token /vagrant/node-token | ||
sudo cp /etc/rancher/k3s/k3s.yaml /vagrant/k3s.yaml | ||
sudo sed -i -e "s/127.0.0.1/${MASTER_IP}/g" /vagrant/k3s.yaml | ||
sudo kubectl apply -f /vagrant/loxilb.yml | ||
sudo kubectl apply -f /vagrant/kube-loxilb.yml | ||
/vagrant/wait_ready.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: nginx-lb1 | ||
annotations: | ||
loxilb.io/lbmode: "onearm" | ||
spec: | ||
externalTrafficPolicy: Local | ||
loadBalancerClass: loxilb.io/loxilb | ||
selector: | ||
what: nginx-test | ||
ports: | ||
- port: 55002 | ||
targetPort: 80 | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: nginx-test | ||
labels: | ||
what: nginx-test | ||
spec: | ||
containers: | ||
- name: nginx-test | ||
image: ghcr.io/loxilb-io/nginx:stable | ||
ports: | ||
- containerPort: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
sudo ip route del 123.123.123.1 via 192.168.90.10 || true | ||
vagrant destroy -f worker1 | ||
vagrant destroy -f master | ||
vagrant destroy -f loxilb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: sctp-lb1 | ||
annotations: | ||
loxilb.io/liveness: "yes" | ||
loxilb.io/lbmode: "onearm" | ||
spec: | ||
loadBalancerClass: loxilb.io/loxilb | ||
externalTrafficPolicy: Local | ||
selector: | ||
what: sctp-test | ||
ports: | ||
- port: 55004 | ||
protocol: SCTP | ||
targetPort: 9999 | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: sctp-test | ||
labels: | ||
what: sctp-test | ||
spec: | ||
containers: | ||
- name: sctp-test | ||
image: ghcr.io/loxilb-io/alpine-socat:latest | ||
command: [ "sh", "-c"] | ||
args: | ||
- while true; do | ||
socat -v -T2 sctp-l:9999,reuseaddr,fork system:"echo 'server1'; cat"; | ||
sleep 20; | ||
done; | ||
ports: | ||
- containerPort: 9999 | ||
env: | ||
- name: MY_POD_IP | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: status.podIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: udp-lb1 | ||
annotations: | ||
loxilb.io/liveness: "yes" | ||
loxilb.io/lbmode: "onearm" | ||
spec: | ||
loadBalancerClass: loxilb.io/loxilb | ||
externalTrafficPolicy: Local | ||
selector: | ||
what: udp-test | ||
ports: | ||
- port: 55003 | ||
protocol: UDP | ||
targetPort: 33333 | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: udp-test | ||
labels: | ||
what: udp-test | ||
spec: | ||
containers: | ||
- name: udp-test | ||
image: ghcr.io/loxilb-io/udp-echo:latest | ||
ports: | ||
- containerPort: 33333 |
Oops, something went wrong.