Module 2 Understanding Kubernetes Architecture Flashcards
In Kubernetes, each node is made up of what pairs?
kube-proxy and kubelet
Each node is made up of a kubelet and kube-proxy.
What is Kubernetes?
Kubernetes is an open source software, a container orchestration platform and a tool that facilitates declarative management.
What component is part of the Kubernetes control plane?
etcd
The etcd is part of the Kubernetes control plane.
What are some of the benefits of an IBM Cloud Kubernetes service?
Some of the benefits include image security compliance with Vulnerability Advisor, support for multizone clusters, continuous monitoring of the cluster health, and highly available masters.
What is considered a Kubernetes object?
Namespace
Namespace is a Kubernetes object.
What occurs when adding more VMs to a cluster to increase capacity?
Scale out
Scaling out occurs when adding more VMs to a cluster.
Replicating a pod serves to scale an application in what way?
Horizontally
Replicating a Pod serves to scale an application horizontally.
What is the purpose of vertical scaling?
Vertical scaling is used to add capacity when resizing a VM.
What does “create” do in this command?
kubectl create –f nginx.yaml
The “create” command creates an object using the details in the nginx.yaml file.
What Kubernetes object represents a single instance of processes running in a container?
Pod
A Pod represents a single instance of processes running in a container.