-
Notifications
You must be signed in to change notification settings - Fork 0
/
Using Google Container Orchestration.txt
85 lines (85 loc) · 3.95 KB
/
Using Google Container Orchestration.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
While evaluating the Mountkirk Games case study you learn that they wish to roll out new continuous deployment capabilities while updating their software at a fast pace. Which complementary Google services could they utilize for the build step in their continuous delivery pipelines?
Artifact Registry
.
.
Cloud Build
.
.
What are some advantages offered by using Kubernetes Engine?
Deployments are scaled automatically
.
.
Clusters function as a single system
.
.
Which are use cases that effectively leverage GKE?
Continuous delivery pipeline
.
.
Migrate workloads to containers
.
.
Which Service type should be used to publish a GKE service to public users over the internet?
LoadBalancer
.
.
Compute Engine allows an organization to create scalable services by leveraging which resource?
Managed instance groups
.
.
Which are required APIs for deploying containers using Cloud Run?
Artifact Registry API
.
.
Cloud Build API
.
.
Cloud Run Admin API
.
.
Which filenames are supported when using a Cloud Build config?
cloudbuild.json
.
.
cloudbuild.yaml
.
.
You are using Cloud Build to build a container. Which gcloud CLI command can be used to build a container image using a config file named cloudbuild.yaml?
gcloud builds submit --region=us-central1 --config cloudbuild.yaml
.
.
Which statements accurately describe containers?
Use a shared OS kernel
.
.
Virtualize at the OS layer
.
.
Which are common use cases that effectively leverage Cloud Run?
Websites and web applications
.
.
API-based web services
.
.
Complete the code snippet that creates a firewall rule to publish a port from a container deployed using GCE.
create
.
.
Which are best practices for building container apps?
Create images with common layers
.
.
Package one app per container
.
.
Build smallest possible images
.
.
Which statements accurately describe Cloud Run?
Cloud Run is considered a serverless service
.
.
Cloud Run is a fully managed service
.
.