DevOps Tools - Git, CKAD, AKS, Jenkins and GitLab Quiz Questions and Answers

Kubernetes is a platform for_______.

Answer :
  • Running and scheduling container applications on a cluster

kubectl is ______.

Answer :
  • The Kubernetes CLI tool

What is Deployment?

Answer :
  • A Deployment is responsible for managing the desired state of your application

What would be the result of the following command? “kubectl exec -it my_pod_name bash”

Answer :
  • Open a console on the first container inside the my_pod_name

Which of the following are delivered by the Master Nodes?

Answer :
  • A) API Server
    B) Controller
    C) Scheduler
    All of the above

Which of the following software provides the key/value database to Kubernetes?

Answer :
  • etcd

How can we access the kubernetes cluster?

Answer :
  • A) via API
    B) via GUI
    C) via CLI
    All of the above

While accessing cluster, a configuration file named 'config' gets created by default inside which directory in Linux?

Answer :
  • /home/user/.kube

What are labels?

Answer :
  • A key-value pair attached to an object

Which of the following subcommands of 'kubectl' do we need to use to look at an object's details?

Answer :
  • describe