Deploy on GCP
Using Terraform
Google Cloud Platform is one of the world's three most popular cloud providers. It offers a high-performance infrastructure for cloud computing, data analytics & machine learning. Secure, reliable, and high-performance cloud services.
At the moment, memphis utilizing Terraform to automate the entire deployment process from VPC creation, to K8S, to memphis deployment.
Terraform codifies cloud APIs into declarative configuration files.
- Authorize the SDK to access GCP using your user account credentials
gcloud auth application-default login
- Enable API services:
gcloud config set project YOUR_PROJECT_ID
gcloud services enable compute.googleapis.com container.googleapis.com

git clone [email protected]:memphisdev/memphis-terraform.git && \
cd memphis-terraform/GCP/GKE
In this step, you will need your
projectID
.make infra
Memphis uses "
makefile
" instead of running three terraform commandsmake cluster
Once deployment is complete, the Memphis Load Balancer URL will be revealed.
Display memphis load balancer public IP by running the following -
kubectl get svc -n memphis
The UI will be available through https://<Public IP>:9000
Destroy Memphis App -
make destroymemphis
It might take a few minutes for the ALB to be deleted.
Destroy Memphis GKE Cluster -
make destroyinfra
Last modified 9mo ago