Spring Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which Kubernetes component is the smallest deployable unit of computing?

A.

StatefulSet

B.

Deployment

C.

Pod

D.

Container

What is a DaemonSet?

A.

It’s a type of workload that ensures a specific set of nodes run a copy of a Pod.

B.

It’s a type of workload responsible for maintaining a stable set of replica Pods running in any node.

C.

It’s a type of workload that needs to be run periodically on a given schedule.

D.

It’s a type of workload that provides guarantees about ordering, uniqueness, and identity of a set of Pods.

In Kubernetes, which abstraction defines a logical set of Pods and a policy by which to access them?

A.

Service Account

B.

NetworkPolicy

C.

Service

D.

Custom Resource Definition

Which of the following options includes valid API versions?

A.

alpha1v1, beta3v3, v2

B.

alpha1, beta3, v2

C.

v1alpha1, v2beta3, v2

D.

v1alpha1, v2beta3, 2.0

What is the main role of the Kubernetes DNS within a cluster?

A.

Acts as a DNS server for virtual machines that are running outside the cluster.

B.

Provides a DNS as a Service, allowing users to create zones and registries for domains that they own.

C.

Allows Pods running in dual stack to convert IPv6 calls into IPv4 calls.

D.

Provides consistent DNS names for Pods and Services for workloads that need to communicate with each other.

Which of the following is a correct definition of a Helm chart?

A.

A Helm chart is a collection of YAML files bundled in a tar.gz file and can be applied without decompressing it.

B.

A Helm chart is a collection of JSON files and contains all the resource definitions to run an application on Kubernetes.

C.

A Helm chart is a collection of YAML files that can be applied on Kubernetes by using the kubectl tool.

D.

A Helm chart is similar to a package and contains all the resource definitions to run an application on Kubernetes.

What does vertical scaling an application deployment describe best?

A.

Adding/removing applications to meet demand.

B.

Adding/removing node instances to the cluster to meet demand.

C.

Adding/removing resources to applications to meet demand.

D.

Adding/removing application instances of the same application to meet demand.

Which of the following is a valid PromQL query?

A.

SELECT * from http_requests_total WHERE job=apiserver

B.

http_requests_total WHERE (job="apiserver")

C.

SELECT * from http_requests_total

D.

http_requests_total(job="apiserver")

Which tools enable Kubernetes HorizontalPodAutoscalers to use custom, application-generated metrics to trigger scaling events?

A.

Prometheus and the prometheus-adapter.

B.

Graylog and graylog-autoscaler metrics.

C.

Graylog and the kubernetes-adapter.

D.

Grafana and Prometheus.

Which of the following options is true about considerations for large Kubernetes clusters?

A.

Kubernetes supports up to 1000 nodes and recommends no more than 1000 containers per node.

B.

Kubernetes supports up to 5000 nodes and recommends no more than 500 Pods per node.

C.

Kubernetes supports up to 5000 nodes and recommends no more than 110 Pods per node.

D.

Kubernetes supports up to 50 nodes and recommends no more than 1000 containers per node.