# 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://developer.entando.com/assets/yaml/custom-resources.tar.gz | tar -xz

Create custom resources

sudo kubectl create -f custom-resources

Create namespace

sudo kubectl create namespace entando

Download Helm chart

curl -L -C - -O https://developer.entando.com/assets/yaml/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"}'