Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 837 Bytes

development.md

File metadata and controls

38 lines (25 loc) · 837 Bytes

Development

Install required dependencies

All 3 Carvel CLIs can be easily installed via brew

brew tap vmware-tanzu/carvel && brew install imgpkg kbld kapp

Build, Test and Install Source Controller

We build, test and install Source Controller via make. To see details:

make help

Note: you'll need to export KO_DOCKER_REPO=${ACCESSIBLE_DOCKER_REPO} such that ko can push to the repository and your cluster can pull from it. Visit the ko README for more information.

To install Source Controller:

make deploy

To uninstall Source Controller:

make undeploy

back