Book Image

Professional Cloud Architect – Google Cloud Certification Guide

By : Konrad Cłapa, Brian Gerrard
Book Image

Professional Cloud Architect – Google Cloud Certification Guide

By: Konrad Cłapa, Brian Gerrard

Overview of this book

Google Cloud Platform (GCP) is one of the leading cloud service suites and offers solutions for storage, analytics, big data, machine learning, and application development. It features an array of services that can help organizations to get the best out of their infrastructure. This comprehensive guide covers a variety of topics specific to Google's Professional Cloud Architect official exam syllabus and guides you in using the right methods for effective use of GCP services. You'll start by exploring GCP, understanding the benefits of becoming a certified architect, and learning how to register for the exam. You'll then delve into the core services that GCP offers such as computing, storage, and security. As you advance, this GCP book will help you get up to speed with methods to scale and automate your cloud infrastructure and delve into containers and services. In the concluding chapters, you'll discover security best practices and even gain insights into designing applications with GCP services and monitoring your infrastructure as a GCP architect. By the end of this book, you will be well versed in all the topics required to pass Google's Professional Cloud Architect exam and use GCP services effectively.
Table of Contents (26 chapters)
Free Chapter
1
Section 1: Introduction to GCP
5
Section 2: Managing, Designing, and Planning a Cloud Solution Architecture
15
Section 3: Designing for Security and Compliance
17
Section 4: Managing Implementation
19
Section 5: Ensuring Solution and Operations Reliability
21
Section 6: Exam Focus

Cron jobs

With cron jobs, you can schedule tasks that run at a defined time or regular intervals. The use case for cron jobs includes administration tasks that need to reoccur; for example, you need to send out an email every day that includes a report about the environment.

For each language, the cron jobs are configured a little bit differently. See the Further reading section to see detailed configuration for various languages. The cron jobs are defined in YAML format and placed in the cron.yaml file.

The following is a YAML file that will run the task every 24 hours:

  1. The actual task is to run it using the handler defined under the url parameter:
cron:
- description: "daily summary job"
url: /tasks/summary
target: beta
schedule: every 24 hours
  1. To deploy the cron job, use the following command:
gcloud app deploy cron.yaml
  1. Once deployed, the jobs are visible...