-
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
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
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 |
The objective is to document findings and recommendations from the review of DevOps processes and artifacts.
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
variables: | |
GCP_ZONE: us-central1-a | |
stages: | |
- npm-install | |
- push | |
npm-install: | |
image: node:8-alpine | |
stage: npm-install |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"log" | |
"net/http" | |
"strings" | |
"time" |
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
package main | |
import( | |
"log" | |
"net/url" | |
"net/http" | |
"net/http/httputil" | |
) | |
func main() { |