0 of 35 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
You must sign in or sign up to start the quiz.
You must first complete the following:
Quiz complete. Results are being recorded.
0 of 35 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0 )
Earned Point(s): 0 of 0 , (0 )
0 Essay(s) Pending (Possible Point(s): 0 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Current
Review
Answered
Correct
Incorrect
Question 1 of 35
1 point(s)
Which of the following validates and configures data for the api objects, including pods, services, replication controllers, and others? The API Server handles REST operations and serves as an interface to the cluster’s shared state through which all other components interact.
Question 2 of 35
1 point(s)
Which is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept? It maintains network rules on nodes that allow network communication to your Pods from network sessions inside or outside your cluster.
Question 3 of 35
1 point(s)
Docker and Kubernetes network troubleshooting can become complex. With a proper understanding of how Docker and Kubernetes networking works and the right set of tools, you can troubleshoot and resolve these networking issues. Which container has a set of powerful networking troubleshooting tools that can be used to troubleshoot Docker networking issues? Along with these tools come a set of use-cases that show how this container can be used in real-world scenarios.
Question 4 of 35
1 point(s)
Which of the following uses Kubernetes resources (DaemonSet, Deployment) to implement cluster features? Because these provide cluster-level features, namespaced resources for addons belong within the kube-system namespace.
Question 5 of 35
1 point(s)
Which mechanism is responsible for saving container logs to a central log store with a search/browsing interface?
Question 6 of 35
1 point(s)
Which checks and configures data for API objects such as pods, services, and replication controllers?
Question 7 of 35
1 point(s)
Check the status of your nodes to see if any of them are experiencing issues. Which is used to see the overall status of each node?
Question 8 of 35
1 point(s)
Check the status of your nodes to see if any of them are experiencing issues. Which is used to get more information on any nodes not in the READY state?
Question 9 of 35
1 point(s)
In a kubeadm cluster, several K8s components run as pods in the kube-system namespace. Check the status of these components with which commands?
Question 10 of 35
1 point(s)
Which logs are an important part of troubleshooting a Kubernetes cluster? Can you check the logs for your Kubernetes-related services on each node using journalctl?
Question 11 of 35
1 point(s)
In Kubernetes, which type of logs redirect log output to /var/log?
Question 12 of 35
1 point(s)
Which command allows you to see systemd logs, giving you a list of log lines? If the node does not have a systemd, are logs managed in the same way they are in conventional server setups?
Question 13 of 35
1 point(s)
Which logs relate to Kubernetes and all of its system component logs, and you can distinguish between components that operate in a container and components that do not?
Question 14 of 35
1 point(s)
You can also run commands inside containers. Suppose you need to troubleshoot what is going on inside a container. You can use which command to run inside those containers?
Question 15 of 35
1 point(s)
You can see a pod’s status with which two commands to get more information about what may be happening with an unhealthy pod?
Question 16 of 35
1 point(s)
In Kubernetes, which can you use to gain insight into what is happening within the container?
Question 17 of 35
1 point(s)
Which command is used to view a container’s logs? A container’s log contains everything the standard output (stdout) and error (stderr) streams by the container process?
Question 18 of 35
1 point(s)
In addition to checking on your Kubernetes networking plugin, it may be a good idea to look at which you are experiencing issues within the Kubernetes cluster network? In a kubeadm cluster, which runs as Pods in the kube-system namespace?
Question 19 of 35
1 point(s)
You can run a container in the cluster that you can use to run commands to test and gather information about network functionality. Which image is a great tool for this? Which image contains a variety of networking exploration and troubleshooting tools?
Question 20 of 35
1 point(s)
In Kubernetes, kubectl returns two main sets of metrics, one for pods and one for nodes. You may use which command to see how much CPU and RAM each pod uses?
Question 21 of 35
1 point(s)
Containers have ephemeral __________, which means data is stored as long as the container is alive.
Question 22 of 35
1 point(s)
Volume retains the data even after the container has crashed or been removed. True or false?
Question 23 of 35
1 point(s)
You treat __________ as an abstract resource.
Question 24 of 35
1 point(s)
To consume persistentVolume (PV), you need to use __________.
Question 25 of 35
1 point(s)
PersistentVolume has access modes such as ReadWriteOnce, ReadWriteMany and ReadOnlyMany. True or false?
Question 26 of 35
1 point(s)
Volume is defined in the pod and mounted in the __________ .
Question 27 of 35
1 point(s)
Containers can share a single volume, but they must be in different pods. True or false?
Question 28 of 35
1 point(s)
hostPath is a type of volume that allows storing data on the specified location on the disk. True or false?
Question 29 of 35
1 point(s)
StorageClass has an attribute called __________ that allows expansion or resizing of volume after they are created.
Question 30 of 35
1 point(s)
When a user requests a persistentVolume, which API is used to represent the request?
Question 31 of 35
1 point(s)
Kubernetes is an open-source platform, but it is not scalable. True or false?
Question 32 of 35
1 point(s)
The K8s cluster is a collection of servers called __________.
Question 33 of 35
1 point(s)
Containers can communicate with other containers easily. True or false?
Question 34 of 35
1 point(s)
Inside a Node, there is a Cluster and a Control Plane. True or false?
Question 35 of 35
1 point(s)
Kubernetes cluster is easily built by a tool called __________.