-
https://cloud.google.com/certification/cloud-architect Definitely go through the Case Studies as they cover at least 30% of the exam questions. You do have a window pane of the case studies available for you to refer to.
-
https://cloud.google.com/certification/practice-exam/cloud-architect I found this as a good gauge of how 'ready' you are for the exam. It does give you a good sense of what the exam will be like
-
https://gcp.solutions Cookbook of GCP Solutions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GCP Cloud Architect - Part 3 | |
Case Studies | |
Refreshed Nov 9th 2018; JencoMart completely dropped | |
Overview - 3 case studies; 40-50% on the exam; Question on one side, Case study on other side | |
Layout of Case study - 1.Company Overview 2.Solution concept - current goal 3.Existing Technical Env 4.Requirements(Tech/Business) 5.Executive statement | |
Mountkirk Games | |
Dress4Win | |
TerramEarth | |
Mountkirk Games |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The access pattern fits Nearline storage class requirements and Nearline is a more cost-effective storage approach than Multi-Regional. | |
The object lifecycle management policy to delete data is correct versus changing the storage class to Coldline. | |
Google Cloud Storage supports Multi-Regional buckets that synchronize data across regions automatically. | |
Google Cloud SQL instances are deployed within a single region. | |
Google Cloud Bigtable data is stored within a single region. | |
Google Cloud Datastore is stored within a single region. | |
Using a shared VPC allows each team to individually manage their own application resources, while enabling each application to communicate | |
between each other securely over RFC1918 address space. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dataflow lifecycle | |
migration concerns from migrating from on-premises over into google cloud | |
code snippet to troubleshoot and diagnose | |
Part 2 - Hands-on with tools | |
Role of Cloud Architect | |
plans, designs and builds the infrastructure for an org to host their workload on GCP; able to plan to scale; | |
scalability and automation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. In AWS batch, you are able to specify minimum, maximum and desired number of CPU's. | |
2. Amazon EBS-backed EC2 instances boot faster than instance store-backed instances. | |
3. The operating system offered in Amazon Light sail are Amazon Linux and Ubuntu. | |
4. AWS Elastic beanstalk is used to spin up infrastructure that is both externally facing and internally facing. | |
5. SSD-backed Amazon EBS gives you low latency. | |
6. AWS can only create latency record sets in the AWS region, not in customer location. | |
7. The only routing protocol that AWS Direct Connect supports is BGP. | |
8. A private VIF is the logical interface between your on-premises network and AWS resource located in VPC. | |
9. Cloud front will forward a file to a user as soon as it get it's first bytes. It does no error checking. | |
10. Origin access identity (OAI) is used to restrict access to your Amazon S3 content. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Autoscaling. | |
◾Understand autoscaling inside and out. | |
◾Make sure you know the differences between deploying with and without Cloudformation (as there are some deployment methods you can do with Cloudformation that you can’t without) and the command or JSON syntax to perform them. | |
◾Understand lifecycle hooks and the autoscaling stages they run in | |
◾Understand launch configurations and how they work and are updated (hint: You must replace them) | |
◾Understand why you may need to place an instance into STANDBY state | |
•Elastic Beanstalk. | |
◾You’ll need to know this to an advanced level. | |
◾Understand what stacks Beanstalk supports natively and how you would deploy a stack it doesn’t (hint: Use Docker). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CI & CD: | |
======== | |
2 core software development processes | |
CI process of automating regular code commits followed by an automated build and test process designed to highlight intergration issues early. | |
Additional tooling and functionality provided by Bamboo, CruiseControl, Jenkins, Go and TeamCity etc. | |
workflow based | |
CD takes the form of a workflow based process which accepts a tested software build payload from a CI server. Automates the deployment into a working QA, Pre-prod or Prod environment. | |
AWS CodeDeploy and CodePipeline provide CI/CD services | |
Elasticbeanstalk and CFN provide functionality which can be utilized by CI/CD servers. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Google Certified Professional Cloud Architect - Part 1 | |
====================================================== | |
GCP Overview | |
Google's suite of cloud computing services; run on same infra and network as google | |
Compute -> App Engine, Container Engine, Compute Engine | |
Storage -> Bigtable, Cloud Storage, Cloud SQL, Cloud Datastore | |
Big Data -> BigQuery, Pub/Sub, Dataflow, Dataproc, Datalab | |
Machine Learning -> Vision API, Machine Learning, Speech API, Translation API | |
https://cloud.google.com/pricing | |
Per second pricing for instances;Private Global Fiber network;Live migration of VMs;Better performance;Industry leading security;access to innovative resources(Big data,ML) |
- have fun with them
- projections
- filters
- resource-keys
- scripting-gcloud
- gcloud alpha interactive
- https://medium.com/@Joachim8675309/getting-started-with-gcloud-sdk-part-1-114924737
- https://medium.com/@Joachim8675309/getting-started-with-gcloud-sdk-part-2-4d049a656f1a
- https://gist.github.com/bborysenko/97749fe0514b819a5a87611e6aea3db8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
from datetime import datetime | |
iam_client = boto3.client('iam') | |
iam_resource = boto3.resource('iam') | |
def get_UsersOlderThan(days): | |
''' Returns list of users whose PasswordLastUsed | |
is greater than <days> ago. |