Mod 2: Planning Cloud Resources

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

What is cloud native design?

Loosely coupled, flexible programs that are developed in smaller units

2
New cards

What are the advantages of cloud native design?

Scalability, portability, low cost

3
New cards

What does serverless mean?

Servers are managed by someone else

4
New cards

What cloud service model does serverless fall under?

FaaS

5
New cards

What are microservices?

Small independent components that provide a single function

6
New cards

How do microservices find each other?

Service discovery

7
New cards

What are the different kinds of clouds?

Public, private, community, hybrid, multi

8
New cards

What is a VPC?

A Virtual Private Cloud is when a CSP hosts an organizations cloud services in an isolated segment away from resources shared with other companies

9
New cards

What is the difference between a VPC and a private cloud?

VPCs provide logical isolation, private provides physical isolation less scalable

10
New cards

What is multitenancy?

How customers use shared computing resources provided by the CSP

11
New cards

What are the 4 common application release strategies?

Blue-green, canary, rolling, in-place

12
New cards

What is a common way to split production from development?

Dev, staging, and production

13
New cards

What is the blue-green model?

Two environments, only one is hosting the production environment while the idle one is hosting development, all users are migrated at once, zero downtime approach

14
New cards

What is the Canary model?

Similar to blue-green, but a small group of users are transferred as a test group before everyone else is, also zero downtime approach

15
New cards

What is the Rolling deployment model?

Gradually moves users to the new environment

16
New cards

What is the in-place deployment model?

Stops the original application and replaces it, results in downtime