Move2Kube is a command-line tool that accelerates the process of re-platforming to Kubernetes/Openshift. It does so by analyzing the environment and source artifacts, and asking guidance from the user when required. It allows customizations to enable generating the directory structure and artifacts in the format required for your project.
To install the latest stable version:
bash <(curl https://raw.githubusercontent.com/konveyor/move2kube/main/scripts/install.sh)
To install a specific version (for example version v0.3.0-alpha.3
):
MOVE2KUBE_TAG='v0.3.0-alpha.3' bash <(curl https://raw.githubusercontent.com/konveyor/move2kube/main/scripts/install.sh)
To install the bleeding edge version:
BLEEDING_EDGE='true' bash <(curl https://raw.githubusercontent.com/konveyor/move2kube/main/scripts/install.sh)
Simply remove the binary
rm /usr/local/bin/move2kube
brew tap konveyor/move2kube
brew install move2kube
brew uninstall move2kube
brew untap konveyor/move2kube
To bring up UI version:
Using docker
:
docker run --rm -it -p 8080:8080 quay.io/konveyor/move2kube-ui:latest
Using podman
:
podman run --rm -it -p 8080:8080 quay.io/konveyor/move2kube-ui:latest
Then go to http://localhost:8080 in a browser
More detailed instructions can be found in the Move2Kube UI repo
move2kube transform -s src
, where src
is the folder containing the source artifacts.
Checkout the Tutorials and Documentation for more information.
- Obtain a recent version of
golang
. Known to work with1.19
. - Ensure
$GOPATH
is set. If it's not set:mkdir ~/go
export GOPATH=~/go
- Obtain this repo:
mkdir -p $GOPATH/src/
- Clone this repo into the above directory.
cd $GOPATH/src/move2kube
- Build:
make build
- Run unit tests:
make test
Source | Artifact available | Features supported |
---|---|---|
Cloud Foundry | Manifest files, Source code | Containerization options based on source code, Deployment artifacts |
Cloud Foundry | Manifest files, Source code, Access to running instance | Containerization options based on source code, Deployment artifacts, Metadata from runtime |
Dockerfile | Dockerfile | Deployment artifacts, CI/CD pipeline artifacts |
Docker Compose/Swarm | Docker compose files | Deployment artifacts |
Docker Compose/Swarm | Docker compose files, Docker images | Deployment artifacts, CI/CD pipeline artifacts |
Source Directories | Source code with no source metadata | Containerization options based on source code, Deployment artifacts, CI/CD artifacts |
Kubernetes Yamls | Kubernetes Yamls | Change versions, parameterize and create Helm chart, Kustomize yamls and Openshift templates. |
- Deployment artifacts
- Dockerfile
- Kubernetes/Openshift Yamls
- Helm charts
- Kustomize
- OpenShift Templates
- Docker compose
You can set an alias for move2kube to make it more convenient to use. The following command allows you to refer to move2kube as m2k for the current terminal session:
alias m2k="move2kube"
To keep aliases between sessions, you can save them in your user’s shell configuration profile file
echo 'alias m2k="move2kube"' >> ~/.bashrc
source ~/.bashrc
- For any questions reach out to us on any of the communication channels given on our website https://move2kube.konveyor.io/