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/vendor
andmanifests/patch
tomanifests/output
folder. Generates a DAG(Directed Acyclic Graph) from
dependency-list.yaml
. From this dependency graph, it generates ainstall.sh
file. This installer script contains commands to deploymanifests/output
folder. Each parent package can provide their owninstall.sh
script. If no script is provided,kubectl apply -R -f .
command will be used to install a package.