Kubernetes Flashcards

1
Q

What is container orchestration?

A

It is deploying and managing a lot containers

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

What are the kubernetes master node components?

A

1.Kube API server
Clients and application interact with the nodes through the API server
2.cluster store
kubernetes backing store. all cluster data are saved here.
3.controller manager
control independent control loops
3.kube-scheduler
select a node for the newly created pod

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

What are the kubernetes node components?

A

Kubelet: manager of this node.
container runtime: Performs container-related tasks like pulling images, starting, stopping containers
kube-proxy: manages local cluster networking

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

What are the types of services in kubernetes?

A

1.Cluster ip service: ip address and port are only accessible from within the cluster
2.Node-port: service has an additional port. by sending a request to the ip address of some node and to this port, we can access the node.
3.load-balancer service: extension for node-port. includes a load balancer from the cloud provider.
4.external-name service: allows routes traffic from the cluster to the outside world using a domain name.

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