Refresher/basics Flashcards Preview

CKAD - Certified Kubernetes Application Developer > Refresher/basics > Flashcards

Flashcards in Refresher/basics Deck (12)
Loading flashcards...
1
Q

What kubernetes component does the client (kubectl) connect to?

A

kube API server

2
Q

What kubernetes component acts as a key-value store to store all data about the cluster?

A

etcd

3
Q

What kubernetes component distributes work across worker nodes?

A

scheduler

4
Q

What kubernetes component responds to events (e.g. pod crashing) and makes decisions?

A

controller

5
Q

What kubernetes component runs containers?

A

container runtime, typically docker

6
Q

What kubernetes component on the worker is responsible for carrying out actions requested by the master node?

A

kubelet

7
Q

How do you view information about the cluster?

A

kubectl cluster-info

8
Q

How do you get information about the nodes of a cluster?

A

kubectl get nodes

9
Q

How are applications to be run on kubernetes packaged?

A

In a container image (aka Docker image).

10
Q

Where does kubernetes typically expect to find applications which it is to run?

A

Applications are expected to be packaged as container images and available from an image repository, e.g. Docker Hub.

11
Q

What is the name of the kubernetes object that encapsulates one or more containers?

A

pod

12
Q

If you scale up your application, what component is increased in number?

A

The number of pods