Now let’s look at how much the solution will cost. Cloud Run is charged based on three factors: CPU and memory per 100 ms of execution For example, 1 vCPU and 512 MB of memory for 1 second could be an execution unit. If you assigned 2 vCPUs and 1 GB of memory to a […]
Securing – Skill Service with Cloud Run
As in Chapter 5 with Cloud Functions, this Cloud Run service is currently using a default service account with broad permissions. Cloud Run is also allowing unauthenticated invocations of the service. This may be OK for testing, but in a production environment, you would want to secure the service, and you will see how to […]
Getting Ready for Deployment – Skill Service with Cloud Run
Before getting hands-on, make sure you have a gcloud CLI either on your local machine or in Cloud Shell, and ensure you are using the same Google Cloud project as in Chapter 5, using the command: gcloudconfiggetproject You can set a PROJECT_ID environment variable again to make it easier to copy and paste commands: exportPROJECT_ID=$(gcloudconfigget-valueproject) […]
Implementation – Skill Service with Cloud Run
The code for this project is in the skill-service directory of the book’s repository. It is implemented in Go. While this may not be a language you have used before, it is worth taking a look at the code to see how it works. The actual code for storing and retrieving the data is in […]
Summary of Services – Skill Service with Cloud Run
Requirements Let’s explore what’s needed for this project. User Story The user story for this piece of functionality is shown in Figure 6-1. Figure 6-1. Project 2 user story Elaborated Requirements This project also has the following specific requirements: Solution What is required here is a reliable and scalable solution for looking up skills from […]
Architecture Diagram – Tag Updater with Cloud Functions
Figure 5-2 is a diagram of the architecture you will be implementing. Figure 5-2. Tag updater design You can draw similar diagrams using the Google Cloud architecture diagramming tool, which is a great tool for drawing cloud architectures. Summary of Services Here is a summary of the Google Cloud services you will be using in […]