1 Answer

0 votes
by

Kubernetes is a distributed open-source technology which helps us in scheduling and executing application container within and across clusters. A Kubernetes cluster consists of two types of resources:

The Master => Coordinates all activities in the cluster, for example, => scheduling applications, maintaining applications' state, scaling applications, and rolling out new updates

Nodes => A node is an instance of an OS that serves as a worker machine in a Kubernetes cluster.

Also, Node will have two components 

  • Kubelet => Agent for managing and communicating with the master
  • Tool (Docker/containers) => Tools for running container operations
  • It is designed based on ground-up as a loosely coupled collection of containers centered around deploying, maintaining, and scaling workloads. Works as an engine for resolving state by converging actual and the desired state of the system (self-healing). Hidden from the underlying hardware of the nodes and provides a uniform interface for workloads to be both deployed and consume the shared pool of resources(hardware) in order to simplify deployment.

    Pods are the smallest unit of objects that can be deployed on Kubernetes, Kubernetes packages one or more containers into a higher-level structure called a pod. Pod runs one level higher to the container.

    A POD always runs on a Node but they share few resources which can be Shared Volumes, Cluster Unique IP, Info about how to run each container.  All containers in the pod are going to be scheduled on an equivalent node.

    Services are the unified way of accessing the workloads on the pods, Control plane which is the core of Kubernetes is an API server that lets you query, manipulates the state of an object in Kubernetes.

wherein the application description is a YAML file also known as configuration or spec file with the help of which we can deploy applications bundled in the form of pods in cluster or node

Related questions

0 votes
    What is Amazon Elastic Kubernetes Service (EKS)?...
asked Feb 10, 2023 in Technology by JackTerrance
0 votes
    What do you understand by a node in Kubernetes?...
asked Oct 2, 2021 in Technology by JackTerrance
0 votes
    What do you know about clusters in Kubernetes?...
asked Oct 2, 2021 in Technology by JackTerrance
0 votes
    How does Kubernetes simplify containerized Deployment?...
asked Oct 2, 2021 in Technology by JackTerrance
0 votes
    What are the features of Kubernetes?...
asked Oct 2, 2021 in Technology by JackTerrance
0 votes
    How is Kubernetes related to Docker?...
asked Oct 2, 2021 in Technology by JackTerrance
0 votes
0 votes
    Kubernetes was developed by _____ and is maintained by ______ (1)Amazon,ECS (2)Microsoft, Apache (3)Google,CNCF(Cloud Native computing foundation) (4)Oracle,Docker...
asked Sep 19, 2021 in Technology by JackTerrance
0 votes
    Nodes are created by Kubernetes? (1)False (2)True...
asked Sep 19, 2021 in Technology by JackTerrance
0 votes
    ______ is the grouping primtive in Kubernetes that groups objects with same labels. (1)Selectors (2)Deployments (3)Services (4)All of these...
asked Sep 19, 2021 in Technology by JackTerrance
0 votes
    Kubernetes supports inbuilt logging and monitoring mechanism (1)False (2)True...
asked Sep 19, 2021 in Technology by JackTerrance
0 votes
    How to monitor the Kubernetes cluster?...
asked Jul 15, 2021 in Technology by JackTerrance
0 votes
    What’s the init container and when it can be used in Kubernetes?...
asked Jul 15, 2021 in Technology by JackTerrance
0 votes
    I have following Kubernetes REST API request GET https://theserver/api/v1/pods?includeUninitialized=true and included ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    Below is the Kubernetes deployment yaml file -container image section: image: https://registry.ng.bluemix. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 1, 2022 in Education by JackTerrance
...