* add contact us info for all setup pages * fix text alignment issue on tooljet-subpath setup pages * remove contact us text from the readme file
6.1 KiB
| id | title |
|---|---|
| google-cloud-run | Google Cloud Run |
Deploying ToolJet on Google Cloud Run
:::info You should setup a PostgreSQL database manually to be used by ToolJet. :::
If you have any questions feel free to join our Slack Community or send us an email at hello@tooljet.com.
Follow the steps below to deploy ToolJet on Cloud run with gcloud CLI.
Deploying ToolJet application
-
Cloud Run requires prebuilt image to be present within cloud registry. You can pull specific tooljet image from docker hub and then tag with your project to push it to cloud registry.
gcloud auth configure-docker docker pull tooljet/tooljet-ce:latest docker tag tooljet/tooljet-ce:latest gcr.io/<replace-your-project-id>/tooljet/tooljet-ce:latest docker push gcr.io/<replace-your-project-id>/tooljet/tooljet-ce:latest
Please run the above command by launching GoogleCLI which will help to push the Tooljet application image to Google container registry.
-
Create new cloud run service
Select and add the pushed Tooljet application image as shown below.
- Ingress and Authentication can be set as shown below, to begin with. Feel free to change the security configurations as per you see fit.
- Under containers tab, please make sure the port is set 3000 and command
npm, run, start:prodis entered in container argument field with CPU capacity is set to 2GiB.
- Under environmental variable please add the below Tooljet application variables. You can also refer env variable here.
Update TOOLJET_HOST environment variable if you want to use the default url assigned with Cloud run after the initial deploy.
:::tip
If you are using Public IP for Cloud SQL, then database host connection (value for PG_HOST) needs to be set using unix socket format, /cloudsql/<CLOUD_SQL_CONNECTION_NAME>.
:::
- Please go to the connection tab. Under Cloud SQL instance please select the PostgreSQL database which you have set-up.
Click on deploy once the above parameters are set.
:::info Once the Service is created and live, to make the Cloud Service URL public. Please follow the steps here to make the service public. :::
Deploying ToolJet Database
If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database.
PostgREST server
-
Cloud Run requires prebuilt image to be present within cloud registry. You can pull specific PostgREST image from docker hub and then tag with your project to push it to cloud registry.
gcloud auth configure-docker docker pull postgrest/postgrest:v10.1.1.20221215 docker tag postgrest/postgrest:v10.1.1.20221215 gcr.io/tooljet-test-338806/postgrest/postgrest:v10.1.1.20221215 docker push gcr.io/tooljet-test-338806/postgrest/postgrest:v10.1.1.20221215
Please run the above command by launching googleCLI which will help to push the PostgREST image to Google container registry.
- Once the PostgREST image is pushed. Click on create service.
Select and add the pushed PostgREST image as shown in below.
- Ingress and Authentication can be set as shown below, to begin with. Feel free to change the security configurations as per you see fit.
- Under containers tab, please make sure the port is set 3000 and CPU capacity is set to 1GiB.
-
Under environmental variable please add corresponding Tooljet database env variables. You can also refer env variable.
-
Please go to connection tab. Under Cloud SQL instance please select the PostgreSQL database which you have set-up for Tooljet application or the separate PostgreSQL database created respective to Tooljet Database from the drop-down option.
Click on deploy once the above parameters are set.
:::info Once the Service is created and live, to make the Cloud Service URL public. Please follow the steps here to make the service public. :::
- Additional Environmental variable to be added to Tooljet application or Tooljet Server connect to PostgREST server. You can also refer env variable here