New to Kubepack? Please start here.
How up command works
pack up -f . command combines manifests/vendor and manifests/patch folders and generates manifests/output folder. It works in couples of step.
- Combines
manifests/vendorandmanifests/patchtomanifests/outputfolder. Generates a DAG(Directed Acyclic Graph) from
dependency-list.yaml. From this dependency graph, it generates ainstall.shfile. This installer script contains commands to deploymanifests/outputfolder. Each parent package can provide their owninstall.shscript. If no script is provided,kubectl apply -R -f .command will be used to install a package.