# Quick Reference
Just the steps, for advanced users.
Install Multipass (opens new window)
Launch VM
multipass launch --name ubuntu-lts --cpus 4 --mem 8G --disk 20G
Copied!
Open Ubuntu shell
multipass shell ubuntu-lts
Copied!
Install k3s
curl -sfL https://get.k3s.io | sh -
Copied!
Check for node ready
sudo kubectl get node
Copied!
Download custom resource definitions
curl -L -C - https://raw.githubusercontent.com/entando/entando-releases/v6.2.0/dist/qs/custom-resources.tar.gz | tar -xz
Copied!
Create custom resources
sudo kubectl create -f dist/crd
Copied!
Create namespace
sudo kubectl create namespace entando
Copied!
Download Helm chart (or generate your own (opens new window))
curl -L -C - -O https://raw.githubusercontent.com/entando/entando-releases/v6.2.0/dist/qs/entando.yaml
Copied!
Configure external access to your cluster with your VM IP
IP=$(hostname -I | awk '{print $1}')
Copied!
sed -i "s/192.168.64.25/$IP/" entando.yaml
Copied!
Deploy Entando
sudo kubectl create -f entando.yaml
Copied!
Check for quickstart-composite-app-deployer Completed
sudo kubectl get pods -n entando --watch
Copied!
Get URL to access Entando App Builder from your browser
sudo kubectl get ingress -n entando -o jsonpath=\ '{.items[2].spec.rules[*].host}{.items[2].spec.rules[*].http.paths[2].path}{"\n"}'
Copied!