Google Cloud Platform Cookbook
eBook - ePub

Google Cloud Platform Cookbook

Legorie Rajan PS

Buch teilen
  1. 280 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Google Cloud Platform Cookbook

Legorie Rajan PS

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Practical recipes to implement cost-effective and scalable cloud solutions for your organizationAbout This Book• Implement Google Cloud services in your organization• Leverage Google Cloud components to secure your organization's data• A recipe-based guide that promises hands-on experience in deploying a highly scalable and available environmentWho This Book Is ForThis book is for IT professionals, engineers, and developers looking at implementing Google Cloud in their organizations. Administrators and architects planning to make their organization more efficient with Google Cloud will also find this book useful. Basic understanding of Cloud services and the Google Cloud platform is necessary.What You Will Learn• Host a Python application on Google Compute Engine• Host an application using Google Cloud Functions• Migrate a MySQL DB to Cloud Spanner• Configure a network for a highly available application on GCP• Learn simple image processing using Storage and Cloud Functions• Automate security checks using Policy Scanner• Understand tools for monitoring a production environment in GCP• Learn to manage multiple projects using service accountsIn DetailGoogle Cloud Platform is a cloud computing platform that offers products and services to host applications using state-of-the art infrastructure and technology. You can build and host applications and websites, store data, and analyze data on Google's scalable infrastructure. This book follows a recipe-based approach, giving you hands-on experience to make the most of Google Cloud services.This book starts with practical recipes that explain how to utilize Google Cloud's common services. Then, you'll see how to make full use of Google Cloud components such as networking, security, management, and developer tools. Next, we'll deep dive into implementing core Google Cloud services into your organization, with practical recipes on App Engine, Compute Engine microservices with Cloud Functions, virtual networks, and Cloud Storage. Later, we'll provide recipes on implementing authentication and security, Cloud APIs, command-line management, deployment management, and the Cloud SDK. Finally, we'll cover administration troubleshooting tasks with the Compute and Container Engines and we'll show how to monitor your organization's efficiency with best practices.By the end of this book, you'll have a complete understanding of how to implement Google Cloud services in your organization with ease.Style and approachThis book will quickly get you started with using Google Cloud Services.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Google Cloud Platform Cookbook als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Google Cloud Platform Cookbook von Legorie Rajan PS im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Ciencia de la computación & Computación en la nube. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Networking

In this chapter, we will cover:
  • Network management using a data network and a management network
  • Content-based load balancing
  • VPC network peering between two networks
  • VPN connection between two networks
  • CDN setup for a static website

Introduction

In this chapter, we'll discover some networking features of Google Cloud Platform (GCP). Google uses a state-of-the-art software-defined network to provide the networking feature for its customers. The networking unit of encapsulation for a set of IP ranges, firewall configurations,and VPN and routing configurations is the Virtual Private Cloud (VPC). VPCs can be scoped globally or regionally and are designed for high levels of security isolation and scalability. It is also possible to share the VPCs among projects.
In this chapter, we'll perform some recipes using multiple network interface cards (NICs), discover advanced features of load balancing and connect two VPCs using peering and a VPN connection.
In addition to its various VPC features, GCP also offers dedicated network services for DNS and CDN. We'll create a static website using Google Storage and put it behind Google CDN and measure its performance from varied locations.

Network management using a data and a management network

It is a common scenario in large servers to have more than one NIC for purposes demanded by the software to function properly, or for networking reasons. GCP allows a maximum of eight NICs (depending on the instance type) to be attached to an instance with nic0 being the default NIC to which GCP's DHCP server sends a default route and nic1 to nic7 being optional.
In this recipe, we'll create an instance with two NICs with each of the NICs attached to a different network. One network would be a management network to manage the instance and another network, a data network, used to serve data to the public domain.

Getting ready

The following are the initial setup verifications and network creation to be carried out before the recipe can be executed:
  1. Create or select a GCP project.
  2. Enable billing and enable the default APIs (some APIs such as BigQuery, storage, monitoring, and a few others are enabled automatically).
  1. We'll create the management network called alpha-mgmt. Choose, the Custom option for the Subnet creation mode and create a single subnet called alpha-mgmt-us-central1 with an IP range of 10.2.0.0/24. Leave the default value in the other fields:
  2. Next, we'll create our data network called beta-data. Choose the Automatic option under Subnet creation mode:
  3. Let's not select any of the firewall rules for the moment. Click the Create button to provision the beta-data network.

How to do it...

We'll create a web server whose public web traffic (data) will be served by the beta-data network and the SSH into the web server would be via the alpha-mgmt network:
  1. Firstly, we'll set up some firewall rules to the alpha and beta networks. In the alpha-mgmt network, open the SSH port 22 to all servers with the network tag alpha-server:
gcloud compute --project=<project id> firewall-rules create
allow-ssh-alpha-servers

--description="Allow ssh access to all servers with network tag alpha-server"
--direction=INGRESS --priority=1000 --network=alpha-mgmt
--action=ALLOW --rules=tcp:22 --source-ranges=0.0.0.0/0
--target-tags=alpha-server
The created rule on the Console will be similar to the following screenshot:
  1. In the beta network, open access to the HTTP port 80 for all the servers tagged beta-server and http-server. This will allow the web traffic to flow to the web server:
gcloud compute --project=<project id> firewall-rules
create allow-http-beta-servers --description="allow http port 80"
--direction=INGRESS --priority=1000 --network=beta-data
--action=ALLOW --rules=tcp:80 --source-ranges=0.0.0.0/0
--target-tags=beta-server,http-server
The created firewall wall rule is shown in the following screenshot:
  1. Next, we'll create our web instance which will have two NICs, one attached to the alpha network and the other to the beta network:
  1. Next, click on the hyperlink Management, disks, networking, SSH keys to open the subtabs.
  1. In the Management subtab, enter the following start up script:
#! /bin/bash
apt-get update
apt-get install -y apache2
cat <<EOF > /var/www/html/index.html
<html><body><h1>Hello World</h1>
<p>Web server...

Inhaltsverzeichnis