You can connect to a Redis instance from Cloud Run by using Direct VPC egress or Serverless VPC Access.
Setup
If you have already installed the Google Cloud CLI and have created a Redis instance, you can skip these steps.
Install the gcloud CLI and initialize:
gcloud init
Follow the Quickstart Guide to create a Redis instance. Take note of the zone, IP address, and port of the Redis instance.
Prepare VPC network egress for configuration
To connect to your Redis instance, your Cloud Run service needs access to the Redis instance's authorized VPC network. To enable this access, you need either Direct VPC egress or a Serverless VPC Access connector. Compare the two network egress methods.
Find the name of your Redis instance's authorized network by running the following command:
gcloud redis instances describe INSTANCE_ID --region REGION --format "value(authorizedNetwork)"
Make a note of the network name.
If you're using Serverless VPC Access, create a connector. Be sure to use the same region and VPC network as the one used by the Redis instance. Make a note of the connector's name.
Sample application
This sample HTTP server application establishes a connection to a Redis instance from a Cloud Run service.
Clone the repository for your chosen programming language and navigate to the folder that contains the sample code:
Go
git clone https://github.com/GoogleCloudPlatform/golang-samples
cd golang-samples/memorystore/redis
Node.js
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples
cd nodejs-docs-samples/memorystore/redis
Python
git clone https://github.com/GoogleCloudPlatform/python-docs-samples
cd python-docs-samples/memorystore/redis
This sample application increments a Redis counter every time the /
endpoint
is accessed.
Go
This application uses the
github.com/gomodule/redigo/redis
client. Install it by running the following command:
go get github.com/gomodule/redigo/redis
Node.js
This application uses the redis
module.
Python
This application uses Flask
for web serving and the redis-py
package to communicate with the Redis instance.
Deploying the application to Cloud Run
To deploy the application:
Copy the
Dockerfile
into the source directory:cp cloud_run_deployment/Dockerfile .
Build a container image using Cloud Build with the following command:
gcloud builds submit --tag gcr.io/PROJECT_ID/visit-count
Deploy the container to Cloud Run.
If you're using Direct VPC egress, run the following command:
gcloud run deploy \ --image gcr.io/PROJECT_ID/visit-count \ --platform managed \ --allow-unauthenticated \ --region REGION \ --network NETWORK \ --subnet SUBNET \ --set-env-vars REDISHOST=REDIS_IP,REDISPORT=REDIS_PORT
where:
PROJECT_ID
is your Google Cloud project's ID.REGION
is the region where your Redis instance is located.NETWORK
is the name of the authorized VPC network that your Redis instance is attached to.SUBNET
is the name of your subnet. The subnet must be/26
or larger. Direct VPC egress supports IPv4 ranges RFC 1918, RFC 6598, and Class E.REDIS_IP
andREDIS_PORT
are the IP address and port number of your Redis instance.
If you're using a Serverless VPC Access connector, run the following command:
gcloud run deploy \ --image gcr.io/PROJECT_ID/visit-count \ --platform managed \ --allow-unauthenticated \ --region REGION \ --vpc-connector CONNECTOR_NAME \ --set-env-vars REDISHOST=REDIS_IP,REDISPORT=REDIS_PORT
where:
PROJECT_ID
is your Google Cloud project's ID.REGION
is the region where your Serverless VPC Access connector and your Redis instance are located.CONNECTOR_NAME
is the name of your connector.REDIS_IP
andREDIS_PORT
are the IP address and port number of your Redis instance.
After the deployment successfully completes, the command line displays your
Cloud Run service's URL. Visit this URL in a web browser
(or use a tool like curl
) and see the count on your Redis instance increase
each time the service is visited.