├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── cmd └── crd-migrator │ └── main.go ├── go.mod ├── go.sum ├── internal ├── created_items_tracker.go ├── graph.go ├── graph_test.go ├── migrator.go ├── migrator_test.go └── set.go └── open_source_licenses.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /crd-migrator 2 | 3 | dist/ 4 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/README.md -------------------------------------------------------------------------------- /cmd/crd-migrator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/cmd/crd-migrator/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/go.sum -------------------------------------------------------------------------------- /internal/created_items_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/created_items_tracker.go -------------------------------------------------------------------------------- /internal/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/graph.go -------------------------------------------------------------------------------- /internal/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/graph_test.go -------------------------------------------------------------------------------- /internal/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/migrator.go -------------------------------------------------------------------------------- /internal/migrator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/migrator_test.go -------------------------------------------------------------------------------- /internal/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/internal/set.go -------------------------------------------------------------------------------- /open_source_licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/crd-migration-tool/HEAD/open_source_licenses.txt --------------------------------------------------------------------------------