Other Flashcards

1
Q

Ensures a particular pod runs on every node

A

Daemonset

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

Management of state

A

Statefulset

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

Running specified number of pods to completion

A

Job

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

Running pod on schedule

A

Cronjob

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

Rules on pods

A

PodSecurityPolicy

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

Sets computational limits on namespaces

A

ResourceQuota

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

If you do not configure pods with ______, they will always be scheduled.

A

resource requests

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

Which Kubernetes component periodically wakes up and checks for pending pods. If it finds any, it attempts to add nodes to the cluster?

A

cluster autoscaler

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

Which of the following enables volumes to be created dynamically?

A

Storage class

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

Which pod attribute do Deployments use when determining which pods to manage?

A

labels

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

What cloud-native construct does a Kubernetes pod wrap?

A

container

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

Which Kubernetes-related network are Service ClusterIP addresses taken from?

A

service network

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

value that is exposed on each node in the cluster and is the port that should be used to access the application from outside of the cluster.

A

spec.ports.nodePort

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

The ________ provides a standard plugin interface for 3rd-party storage vendors to write plugins for.

A

Container Storage Interface (CSI)

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

Which of the following is a difference between the Horizontal Pod Autoscaler (HPA) and the Cluster Autoscaler (CA)?

A

HPA metrics are based on what is actually used, whereas CA metrics are what is requested

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

You are deploying an application that exposes an API. You need other applications on your internal corporate LAN to be able to query the API. These applications will not be running on your Kubernetes cluster. Which type of Kubernetes Service would you deploy to make this work?

A

NodePort

17
Q

A ________ is an object that has a long-lived IP address and DNS name. They are placed in-front of Pods to provide a stable and reliable network abstraction point (Pods are ephemeral and their names and IP addresses cannot be relied on).

A

Kubernetes Service

18
Q

Which Kubernetes system component is responsible for local networking on each node in the cluster?

A

kube-proxy

19
Q

Which Kubernetes resource brings scaling and rolling updates to pods?

A

deployments