Enterprise Deployment Guide for GCP
GCP Enterprise Deployment Guide for RagaAI Catalyst
Deploying RagaAI Catalyst on your Google Cloud Platform infrastructure ensures that your data remains secure and within your control. Follow these steps to set up RagaAI Catalyst in your GCP account.
Provision Base Infrastructure
To get started quickly, you can use the Terraform Templates and scripts provided by the Raga team:
Pre-Requirements
Set Up GCP User: The user running the installation should have Owner or Editor roles along with Service Account Admin permissions.
Resource Quotas: Ensure that you have sufficient quota for the VMs. At least 3 nodes, each with:
4 vCPUs
16 GiB RAM
Ensure that your system supports Bash commands.
The following CLI tools should be installed:
GCP Authentication using CLI
Authenticate with the Google Cloud SDK:
gcloud auth application-default login
Validate GCP CLI Login:
gcloud auth list
Execute the following command to Provision the Environment:
Extract the TAR file provided by the RagaAI team:
tar -zxvf raga-catalyst-terraform-gcp-<version>.tar
gcp-infra.sh
is the cloud provisioning script. This uses python, gcloud CLI, and terraform to provision the base infra.
bash gcp-infra.sh --region=<region> --customer-name=<customer-name> --docker-hub-pat=<docker-hub-pat> --project-id=<project_id>
Replace placeholders:
<region>
: GCP region (e.g., us-central1)<customer-name>
: This will be the prefix for all GCP resources<docker-hub-pat>
: Provided by RagaAI team<project_id>
: Project ID (e.g., raga-poc-117209)
List of GCP Resources Provisioned by RagaAI Terraform Infrastructure
Note: You can also set up your cloud environment using the following requirements as an alternative to the RagaAI Terraform templates
Install Raga Catalyst
Install Raga Catalyst:
SSH into the bastion VM and run the installation command
Configure gcloud CLI and kubectl to interact with your GKE cluster
Copy the TAR file provided by the RagaAI team into the instance & extract the file
Update the .env file with the values that you get when you execute the terraform output command
Execute the following command to deploy Catalyst:
python3 gcp-catalyst.py
Run the Database Migration
helm install db-migration db-migration \
-n raga \
--set ReleaseTag=<release-tag> \
--set GcsBucketname=<gcs-bucket-name>
Install Raga Services
helm install raga raga \
-n raga \
--set ReleaseTag=<release-tag> \
--set GcsBucketname=<gcs-bucket-name>
Access Raga Catalyst
Access Catalyst UI with the private load balancer IP/DNS:
Portal:
http://<Load_Balancer_IP>
API:
http://<Load_Balancer_IP>/api
For any issues during the deployment process or additional assistance, please contact our support team at [email protected].
Last updated
Was this helpful?