Module 2 Flashcards

1
Q

Kubernetes

A

a portable, extensible, open-source platform for managing containerized workloads and services that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes services, support, and tools are widely available.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Cluster

A

A deployment of Kubernetes is called a cluster.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Kubernetes Objects?

A

Kubernetes objects are persistent entities in Kubernetes. In this way, Kubernetes objects define the state of thecluster. By creating an object, users cantell Kubernetes that theyexpect that object to exist. The system is then responsible for ensuring that that object does in fact exist.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Namespaces

A

With namespaces, userscan make one cluster appear to be several distinct clusters in order for multiple people to share the cluster. A cluster will automatically have several namespaces created. Namespaces can be used to provide logical separation of a cluster into virtual clusters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Labels

A

Key/value pairs that can be attached to objects in order to identify those objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Selectors

A

Used by Kubernetes controllers to determine which set of objects ought to be controlled.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Pod

A

Simplest unit in kubernetes,
Represents processes running in thecluster.
Encapsulates a container (or sometimes multiple).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Replicaset

A

A ReplicaSet maintains a set of Identical Pods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Kubectl CLI

A

Kubectl CLI is the user interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Resizing a VM to add additional capacity is part of which of the following?

A

Vertical scaling

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Adding more VMs to a cluster to increase capacity is which of these?

A

Scale out

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Replicating a Pod serves to scale an application in which of the following ways?

A

Horizontally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which of the following statements describes Kubernetes?

A

A.Open source software
B.Container orchestration platform
C.A tool that facilitates declarative management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which of the following components is part of the Kubernetes control plane?

A

etcd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which of the following is considered a Kubernetes object?

A

Namespace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which Kubernetes object represents a single instance of processes running in a container?

A

Pod

17
Q

What does “create” do in this command?kubectl create –f nginx.yaml

A

It creates an object using the details in the nginx.yaml file.

18
Q

What are some of the benefits of an IBM Cloud Kubernetes service? Select all that apply.

A

A.Image security compliance with Vulnerability Advisor
B.Support for multizone clusters.
C.Continuous monitoring of the cluster health.
D.Highly available masters.

19
Q

Each node is made up of which of the following pairs?

A

C.kube-proxy and kubelet