├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bgp-manager ├── Dockerfile ├── cni-bin │ └── .gitkeep ├── entrypoint.sh └── frr │ ├── bgpd_master.stub │ ├── bgpd_worker.stub │ └── daemons ├── kathara-daemonset.yml └── megalos-cni ├── Makefile ├── go.mod ├── go.sum └── src ├── common_utils.go ├── megalos.go ├── veth_utils.go └── vxlan_utils.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/README.md -------------------------------------------------------------------------------- /bgp-manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/bgp-manager/Dockerfile -------------------------------------------------------------------------------- /bgp-manager/cni-bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-manager/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/bgp-manager/entrypoint.sh -------------------------------------------------------------------------------- /bgp-manager/frr/bgpd_master.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/bgp-manager/frr/bgpd_master.stub -------------------------------------------------------------------------------- /bgp-manager/frr/bgpd_worker.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/bgp-manager/frr/bgpd_worker.stub -------------------------------------------------------------------------------- /bgp-manager/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/bgp-manager/frr/daemons -------------------------------------------------------------------------------- /kathara-daemonset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/kathara-daemonset.yml -------------------------------------------------------------------------------- /megalos-cni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/Makefile -------------------------------------------------------------------------------- /megalos-cni/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/go.mod -------------------------------------------------------------------------------- /megalos-cni/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/go.sum -------------------------------------------------------------------------------- /megalos-cni/src/common_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/src/common_utils.go -------------------------------------------------------------------------------- /megalos-cni/src/megalos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/src/megalos.go -------------------------------------------------------------------------------- /megalos-cni/src/veth_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/src/veth_utils.go -------------------------------------------------------------------------------- /megalos-cni/src/vxlan_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatharaFramework/Megalos-CNI/HEAD/megalos-cni/src/vxlan_utils.go --------------------------------------------------------------------------------