Move2Kube API provides a REST interface to interact with move2kube command line tool.
The API is documented here: https://github.com/konveyor/move2kube-api/blob/main/assets/openapi.json
(Use https://editor.swagger.io/ to view it.)
Run using container from registry using make crun
- Obtain a recent version of
golang. Known to work with1.19. - Ensure
$GOPATHis set. If it's not set:mkdir ~/goexport GOPATH=~/go
- Obtain this repo:
mkdir -p $GOPATH/src/- Clone this repo into the above directory.
cd $GOPATH/src/move2kube-api
- Build:
make build - Run unit tests:
make test - Run image build:
make cbuild - Run image:
make crun
- For any questions reach out to us on any of the communication channels given on our website https://move2kube.konveyor.io/

