Scheduling Flashcards

1
Q

True or false?

Kubernetes adds a name in the nodeName section automatically in the spec defined when creatin the yaml file in a declarative way.

A

True

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

True or false?

Kubernetes won’t allow you to change the nodeName after a pod has been created

A

True. the nodeName has to be set upon pod creation. It cannot be modified afterwards. In that case you would have to use a binding object.

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

Lets say I have a pod and there’s no scheduler present, since I cannot assign a the pod to a node after the pod has been created, I would have to first delete the pod and afterwards, use the yaml file to create the pod again with the nodeName flag included, what single command can i use ton achieve these two steps?

A

kubectl replace –force -f your_yaml_filename.yaml

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

The command generally used to check the status of a pod is kubectl get po, however, what if I don’t want to run this same command over and over again to check the status of it?

A

kubectl get po –watch

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

What command can I use to check the node in which the port is running?

A

kubectl get po -o wide

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

_______are key/value pairs that are attached to objects such as Pods.

A

Labels

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

Via a label ___________, the client/user can identify a set of objects. The label _________is the core grouping primitive in Kubernetes.

A

selector

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

how can I use a selector in Kubernetes?

A

kubectl get pods –selector app=App1

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

what command can I use to get the number of pods?

A

kubectl get pods –no-headers| wc -l

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

command to list all objects in a namespace:

A

kubectl get all –no-headers | wc-l

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

true or false:
taints are placed on nodes and tolerations are places on pods.

A

True

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

What are the main taint effects?

A

No schedule, PreferNoSchedule, NoExecute

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

The _______ node has all the capability of hosting pods and running all management software. The ________ does not schedule pods on the master node.

A

master node
Scheduler (upon cluster setup, a taint is setup on the master node automatically that prevents any pods to be scheduled on the master node).

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

What command can I use to see the master node taint created automatically?

A

kubectl describe node kubemaster | grep Taint

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

How to label a node imperatively?

A

kubectl label nodes <node-name> <label-key>=<label-value></label-value></label-key></node-name>

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

Whats is the objective of node affinity?

A

Is to ensure that pods are hosted on particular nodes.

16
Q

What is node selector?

A

is a simple way to specify which nodes a pod should be scheduled onto based on a set of label key-value pairs.

17
Q

Node _________is limited to looking for exact label key-value pair matches, meaning that it cannot use logical operators or more complex matching rules.

18
Q

Node __________ enables a conditional approach with logical operators in the matching process.

19
Q

Node Affinity uses a combination of label selectors, operators, and values to match nodes. The operators include:

A
  • In
  • NotIn
  • Exists
  • DoesNotExist
20
Q

Whats are the node affinity types - in available?

A

requiredDuringSchedulingIgnoredDuringExecution

preferredDuringSchedulingIgnoredDuringExecution

21
Q

What does preferredDuringSchedulingIgnoredDuringExecution mean?

A
  • The scheduler will attempt to schedule the pod on a node that matches one of the rules.
  • If no nodes match any of the rules, the pod may be scheduled on any node.
22
Q

What does requiredDuringSchedulingIgnoredDuringExecutionmean?

A
  • Ensure that the pod is only scheduled on nodes that match the specified node selector rules.
  • If no nodes match the node selector rules, the pod remains unscheduled.
23
Q

What is the planned node afiinity type?

A

requiredDuringSchedulingRequiredDuringExecution

24
Q

Node affnity support the following operators:

A

In
NotIn
Exists
DoesNotExist
Gt
Lt

25
Q

What is the LimitRange in Kubernetes?

26
Q

How does Kubernetes define “Limits”?

A

the maximum amount of a resource to be used by a container.

27
Q

__________ are the minimum guaranteed amount of a resource that is reserved for a container.

28
Q

_______ is a compressible resource, meaning that it can be stretched in order to satisfy all the demand. In case that the processes request too much ______, some of them will be throttled.

29
Q

_________ is a non-compressible resource, meaning that it can’t be stretched in the same manner as CPU. If a process doesn’t get enough __________ to work, the process is killed.

30
Q

A _____________(and their analogues Kibibyte, Gibibyte,…) is 2 to the power of 20 bytes. It was created to avoid the confusion with the Kilo, Mega definitions of the metric system. You should be using this notation, as it’s the canonical definition for bytes, while Kilo and Mega are multiples of 1000. the _________________ is multiple of 1024.

31
Q

True or false: The status OOMKilled indicates that it is failing because the pod ran out of memory. Identify the memory limit set on the POD.

32
Q

What does a DaemonSet in Kubernetes do?

A

ensures that all (or some) Nodes run a copy of a Pod. As nodes are added to the cluster, Pods are added to them. As nodes are removed from the cluster, those Pods are garbage collected. Deleting a DaemonSet will clean up the Pods it created

33
Q

True or false: you can create static pods by placing their definition files in the designated directory.

A

True (this only applies to pods as the kubelet can only interpret pods)

34
Q

____________ are a way to run pods directly through a Kubernetes node’s kubelet daemon instead of through the API server.

A

Static Pods. This allows static pods to start up even if the API server is not running yet, which is useful for bootstrapping the Kubernetes control plane components like the API server, controller manager, and scheduler.

35
Q

True or false: regular API-server created pods do not have acces to the kubelet filesystem.

A

True, this is why Static pods can also be useful for running privileged pods that need access to the kubelet filesystem.

36
Q

Why are static pods in kubernetes marked as controlplane?

A

Static pods in Kubernetes are marked as “controlplane” because they are typically used to run the Kubernetes control plane components (like the API server and controller-manager) directly on a node, managed by the kubelet rather than the API server, which is the primary way pods are managed.