├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE.md ├── README.md ├── go.mod ├── go.sum ├── main.go └── templates ├── calico-static-ip-and-mac-patches.yaml ├── ippool.yaml └── kube-ovn-static-ip-and-mac-patches.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/main.go -------------------------------------------------------------------------------- /templates/calico-static-ip-and-mac-patches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/templates/calico-static-ip-and-mac-patches.yaml -------------------------------------------------------------------------------- /templates/ippool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/templates/ippool.yaml -------------------------------------------------------------------------------- /templates/kube-ovn-static-ip-and-mac-patches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartxworks/knest/HEAD/templates/kube-ovn-static-ip-and-mac-patches.yaml --------------------------------------------------------------------------------