Installation
Instructions to install Burla inside your private cloud.
TLDR:
Simply run
pip install burla
then runburla install
If you're missing anything the command will tell you what to do!
Burla is currently GCP only.
We fully intend to support AWS, Azure, and on-prem deployments, but don't yet. E-mail jake@burla.dev if you're an AWS/Azure shop and are really interested in Burla,
Private managed Burla clusters are available if you're not on GCP and want to use Burla now.
How to install Burla in GCP:
First, ensure gcloud
is installed and configured correctly:
If you haven't yet, install the gcloud CLI, and login using application-default credentials.
Also, ensure gcloud
is pointing at the project you wish to install Burla inside:
To view your current project run:
gcloud config get project
To change your current project run:
gcloud config set project <desired-project-id>
Then deploy Burla with:
pip install burla
burla install
That's it!
Burla install requires that your user account have permission to run the following commands:
gcloud run deploy ...
gcloud firestore databases create ...
gcloud compute firewall-rules create ...
gcloud services enable ...
If you're missing any permissions, burla install
will tell you which ones you still need.
Once installed, point your client at your new burla cluster by setting the enviroinment variable BURLA_API_URL
to the URL of the cloud run service that was just deployed.
The burla install
command will print this URL as well a short quickstart when finished.
Not on GCP? Use a private managed Burla cluster instead
Pricing:
We charge a flat 1.5x multiple of our underlying compute cost from your deployment. If you spend $100 on compute, we will bill you $150.
Questions? Schedule a call with us, or email jake@burla.dev. We're always happy to talk.
Last updated