# 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
Open Ubuntu shell
multipass shell ubuntu-lts
Install k3s
curl -sfL https://get.k3s.io | sh -
Check for node ready
sudo kubectl get node
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
Create custom resources
sudo kubectl create -f dist/crd
Create namespace
sudo kubectl create namespace entando
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
Configure external access to your cluster with your VM IP
IP=$(hostname -I | awk '{print $1}')
sed -i "s/192.168.64.25/$IP/" entando.yaml
Deploy Entando
sudo kubectl create -f entando.yaml
Check for quickstart-composite-app-deployer Completed
sudo kubectl get pods -n entando --watch
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"}'