{"id":7810,"date":"2026-08-25T12:38:12","date_gmt":"2026-08-25T07:08:12","guid":{"rendered":"https:\/\/www.host.co.in\/blog\/?p=7810"},"modified":"2026-08-25T12:38:12","modified_gmt":"2026-08-25T07:08:12","slug":"what-is-kubernetes","status":"publish","type":"post","link":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/","title":{"rendered":"What Is Kubernetes? A Non-Developer&#8217;s Guide"},"content":{"rendered":"<p><span style=\"font-weight: 400;\">When we talk about Kubernetes, imagine a fruit seller selling five different types of fruit, each requiring a different storage condition to stay fresh. Now, the fruit seller needs to transfer this fruit to retailers across different cities and needs to make sure every fruit stays safe and fresh no matter where it is going. So the fruit seller uses Docker to create containers that keep each fruit sealed and protected in its own right environment.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Now the problem is the fruit seller has five different fruits, each needing its own container, and soon there could be hundreds of these containers being sent out to different retailers every single day. Managing that many containers by hand, checking which ones are damaged, which ones need replacing, and which retailer needs more stock during a festival rush, becomes an impossible task without help.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is where the need for Kubernetes emerges. Kubernetes is essentially a supervisor that oversees all the containers it launches. It identifies the healthy containers and replaces those that are unhealthy or have failed. In case there is a sudden surge in the need for containers, such as during an online holiday sale campaign, it will launch additional containers if it has been set to scale. Docker secures and organises the fruit, while Kubernetes makes sure that there are adequate containers that run smoothly.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">With the help of this analogy, let us now move on and see what Kubernetes and Docker are in this guide.<\/span><\/p>\n<h2><b>What is Kubernetes Orchestration<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">It is a tool used to manage multiple containers. It is referred to as orchestration, where an orchestra conductor manages and makes people understand, tuning the violin, guiding, instructing, monitoring, and directing. That is exactly what Kubernetes does.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In technical terms, Kubernetes is an open-source platform used to automate the deployment, scaling, and management of containerised applications.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Once your application is packed into containers, using something like Docker, Kubernetes takes over the job of running those containers reliably: starting them, replacing any that fail, adding more when traffic increases when scaling is configured, and removing extras when things quiet down.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The word &#8220;orchestration&#8221; fits exactly the way the conductor analogy describes it. A conductor does not play every instrument themselves; they make sure each musician comes in at the right time, stays in sync with everyone else, and gets corrected the moment something goes off.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Kubernetes does the same thing with containers instead of musicians: it does not run your application&#8217;s code directly; it makes sure every container is running where it should be, stays healthy, and gets replaced the moment something goes wrong, all without a person having to step in and fix it manually every time.<\/span><\/p>\n<h2><b>What is Kubernetes Used For?<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">At its core, Kubernetes exists to automate three things: getting containers deployed, scaling them up or down as needed, and managing their health without someone sitting there watching every single one. That is the whole job, whether it is one small app or hundreds of containers spread across many servers.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Going back to the fruit seller, this is the part where the analogy really pays off. It is not just about protecting one box of fruit from one warehouse to one shop. It is about hundreds of these boxes going out every day to different retailers in different cities, with demand changing constantly \u2013 more boxes needed during a festival, fewer on a slow week. Kubernetes is what makes that entire operation run itself.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the real world, this shows up in a few common ways:<\/span><\/p>\n<h3><b>1. Microservices<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Instead of a single large application, many modern apps are split into several smaller, independent pieces, one for login, one for payments, one for search, etc. All of these are separate pieces that work in sync. Kubernetes helps manage their deployment, scaling, and availability, rather than someone managing each one manually.<\/span><\/p>\n<h3><b>2. CI\/CD pipelines<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u00a0When a team pushes new code, it usually goes through a process of automatic testing and release called CI\/CD. And Kubernetes fits in here, rolling out new versions of an application smoothly and supporting rollbacks if something breaks, without the site or app necessarily going down in the process.<\/span><\/p>\n<h3><b>3. Hybrid and multi-cloud deployments\u00a0<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Some businesses run their infrastructure across several cloud providers or between their own servers and the cloud. Kubernetes is the same across all these environments, so the same application does not need to be rebuilt differently depending on where it is running.<\/span><\/p>\n<h2><b>What is Kubernetes in DevOps<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">You have probably heard the term &#8216;DevOps&#8217; thrown around a lot, especially if you work anywhere near a tech team, so it is worth explaining plainly before connecting it to Kubernetes.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">DevOps is just the practice of the people who build software and the people who run the servers working closely together, instead of being two separate teams that barely talk to each other. The whole point is releasing software faster, with fewer mistakes, and with a lot more automation replacing manual, repetitive work.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Kubernetes fits into this picture as one piece of a much larger toolchain, not the whole thing. A typical DevOps process usually involves:<\/span><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b><\/b><b><\/b><b>CI\/CD:<\/b><span style=\"font-weight: 400;\"> short for Continuous Integration\/Continuous Deployment\u2014this is where new code gets automatically tested and prepared for release before it ever reaches a real server.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b><\/b><b><\/b><b>Infrastructure as Code (IaC): <\/b><span style=\"font-weight: 400;\">instead of someone clicking through settings to create a server manually, the whole thing is written as code so you can do it reliably every time.<\/span><\/li>\n<\/ol>\n<p><span style=\"font-weight: 400;\">This is where Kubernetes actually takes over once the code is tested and the servers are ready. It runs the production app in containers and keeps it running right, day after day, without anyone having to dive in every time something breaks or the traffic spikes suddenly.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is really why Kubernetes became such a central part of modern DevOps. Before it existed, keeping an application running reliably at scale meant a lot of manual server management, restarting things that crashed, adding more servers by hand during busy periods, and constantly watching for problems.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That kind of repetitive, error-prone work is exactly what DevOps as a whole is trying to get rid of, and Kubernetes automates precisely that piece of the puzzle.<\/span><\/p>\n<h2><b>What is Kubernetes in cloud computing<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">You have probably also come across the term &#8216;cloud-native&#8217; somewhere, and it is worth clearing up what it actually means before connecting it to Kubernetes. Cloud-native does not just mean an application is running on the cloud; plenty of old-style applications get moved onto cloud servers without really changing how they work underneath, and that is not the same thing at all.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8216;Cloud-native&#8217; means an application is actually built to take advantage of what the cloud is good at: scaling up and down easily, recovering automatically when something fails, and running across many servers instead of being stuck on just one. Kubernetes is one of the core tools that makes this possible.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This matters even more once you consider that businesses are rarely locked into just one cloud provider. The three biggest are:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">AWS (Amazon Web Services)<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\u00a0Microsoft Azure\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Google Cloud (GCP)<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Kubernetes runs consistently across all three, along with private and hybrid setups too. So an application built to run on Kubernetes does not need to be rebuilt from scratch just because a business decides to switch providers or wants to run partly on one cloud and partly on another. This is a big part of why it became the standard for cloud-native infrastructure rather than staying tied to any single provider.<\/span><\/p>\n<h2><b>What is Kubernetes architecture?<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Everything we have talked about so far has been about what Kubernetes does. This section is about how it actually does it: the pieces underneath that make the whole thing work, explained in the same simple way, without needing a developer background to follow along.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Think back to the fruit seller. Kubernetes managing hundreds of fruit containers is not one single thing happening; it is really three parts working together: a group of machines actually storing and carrying the fruit, a decision-maker figuring out which machine gets which container, and the individual boxes of fruit themselves, sitting inside those machines.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That is exactly how Kubernetes is structured, just with technical names attached to each part<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>The Kubernetes Cluster<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">If you are wondering what a Kubernetes cluster is, in the simplest terms, it is a set of machines that function as one system rather than just one machine trying to do everything alone. The machines are called nodes, and the collection of these nodes is what will run your application.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Let us go back to the example of the fruit vendor: instead of having just one big warehouse trying to store and manage each fruit container all by itself, you have several small warehouses distributed around, all operating as one unified network. This network of warehouses is the cluster. The warehouse is the node, and the containers and pods running on those nodes are the actual workloads.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">So the relationship is simple: the cluster is the whole system, nodes are the individual machines making up that system, and workloads are the actual containers running on top of those nodes.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>The Control Plane<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">If the cluster refers to the entire network of warehouses, the control plane becomes the headquarters that decides what will happen where. This is the component of Kubernetes in charge of making all decisions, including where to allocate a particular container, how to react to failures, etc.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In practice, the control plane itself is built out of several components interacting with one another: an API server (in charge of receiving orders on what should be done), the scheduler (responsible for allocating containers onto nodes), the controller manager (responsible for monitoring the system and fixing the issues, if any occur) and etcd (responsible for storing the cluster&#8217;s state and configuration, like a master record of what the cluster should and does look like).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is not necessary to learn by heart each of these components separately in order to get an understanding of the bigger picture. All you have to remember is this: the control plane is the brain of Kubernetes \u2013 it does not carry the fruit but decides where each container should be allocated and monitors its status.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>Nodes and Pods<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Nodes were briefly introduced earlier; they are individual computing units within the cluster that perform all of the computational tasks. A node also runs the components needed to manage Pods, including the kubelet and a container runtime. However, there is still one element that exists between the node and the user&#8217;s application: the pod.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">A pod is the smallest entity that Kubernetes manages and creates. Instead of running a container on a node right away, it first places it into the pod. In most cases, a pod contains only one container; however, several closely related containers may be contained within one pod at times.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Finally, relating the concept to the fruit seller example once again: a Kubernetes node is the warehouse, a pod is the crate contained within it, while the container is the sealed package of fruit placed inside the crate. It is important to note that Kubernetes manages Pods and the workloads they contain; a Pod is created, replaced or removed depending on the desired state.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Thus, the hierarchical structure, from top to bottom: the cluster is the network of warehouses, nodes are the individual warehouses, pods are the crates contained within them, and the containers are the sealed packages inside these crates.<\/span><\/p>\n<h2><b>Key Kubernetes Concepts You Should Know<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">By now you understand the core structure: cluster, control plane, nodes, and pods. A few more terms come up constantly once you start reading about Kubernetes, and it helps to know what each one actually means before you run into them elsewhere.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>What is a Kubernetes deployment?<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">It is how you tell Kubernetes what you want running and how many copies of it. Instead of manually starting pods one by one, you describe the desired state, say, &#8220;Keep three copies of this container running at all times&#8221;, and Kubernetes handles the rest, including rolling out updates gradually and replacing any pod that crashes or disappears, without you needing to step in each time.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>What is a Kubernetes namespace?<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">It is a way of dividing up a single cluster into separate, isolated sections. Think of it like separate folders on the same computer; everything technically lives on the same machine, but keeping things organised into namespaces means different teams or different projects will not accidentally interfere with each other, even though they are all sharing the same cluster underneath.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>What is a Kubernetes Service?<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">A service solves a problem that comes up naturally with pods: pods can be replaced or restarted at any time, and every time that happens, they can get a new internal address. A service gives a stable, unchanging way to reach a group of pods, so the rest of your application always knows where to send a request, even as the actual pods behind it come and go.<\/span><b><\/b><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>What is a Kubernetes Ingress?<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">It is a set of rules that lets traffic from outside the cluster reach the right place inside it. Without ingress, the services it routes to are not directly reached through those ingress rules. An ingress controller is the specific piece that implements these rules; it reads the rules you set and directs incoming visitor traffic to the correct service, similar to how a receptionist directs visitors to the right department once they walk through the front door.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>What is a Kubernetes operator?<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Most people get confused about what a Kubernetes operator is. The operator takes automation a step further for more complex applications, ones that need specific, specialised knowledge to run correctly, not just started and left alone.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">An operator encodes that specialised knowledge directly into Kubernetes, so tasks a human expert would normally need to handle manually (like properly backing up a database or safely upgrading it) get automated as well.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Helm is often described as the package manager for Kubernetes, and that description holds up well. Instead of writing out every single configuration file needed to deploy an application from scratch,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0Helm lets you package all of that into a reusable bundle, called a chart, and install or update the whole thing with one command: the same way installing an app on your phone does not require you to configure every setting manually first.<\/span><\/p>\n<h2><b>What is Kubernetes vs Docker?<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This is probably the single most common confusion people run into when they first start reading about Kubernetes, so it is worth addressing directly. Kubernetes and Docker are not two competing tools trying to do the same job. They are not alternatives to each other at all \u2014 they solve two completely different problems, and in most real setups, they actually work together, not against each other.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Go back to the fruit seller one last time. Docker is the tool used to build and run containers: the sealed boxes that keep one type of fruit safe, fresh, and protected, no matter where they travel or what environment they end up in. That is the basic job. Docker packages something so it can run consistently across environments. Kubernetes manages those containers rather than packaging the application itself.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Kubernetes is the operation managing hundreds of these containers at once: deciding which warehouse each one goes to, replacing any container that fails, and, when scaling has been configured, sending out more containers when a festival sale creates a sudden spike in demand. Docker builds and runs containers. Kubernetes manages and orchestrates many containers at scale.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is essentially what Kubernetes and Docker mean in a common workflow. Docker can build and run containers on a machine, while Kubernetes works at the next higher level, managing many containers across one or more machines simultaneously. As part of the common workflow process in real-world situations, the developer would use Docker to build a container image out of their application first and then use that image with Kubernetes, where the execution of the container will be managed.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">One small technical note worth knowing: Kubernetes itself no longer uses Docker directly as its container runtime; it uses runtimes such as containerd and CRI-O instead. Docker can still be used to build your container images, which Kubernetes can then run through a compatible runtime underneath.<\/span><\/p>\n<table>\n<tbody>\n<tr>\n<td><b>Factors<\/b><\/td>\n<td><b>Docker<\/b><\/td>\n<td><b>Kubernetes<\/b><\/td>\n<\/tr>\n<tr>\n<td><b>What it actually is<\/b><\/td>\n<td><span style=\"font-weight: 400;\">A tool for packaging and running individual containers<\/span><\/td>\n<td><span style=\"font-weight: 400;\">A system for managing many containers across many machines<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Main job<\/b><\/td>\n<td><span style=\"font-weight: 400;\">Packaging an application so it runs the same way anywhere<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Orchestrating, scaling, and healing containers automatically<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Works on<\/b><\/td>\n<td><span style=\"font-weight: 400;\">A single host\/machine<\/span><\/td>\n<td><span style=\"font-weight: 400;\">A cluster of many machines working together<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Handles scaling?<\/b><\/td>\n<td><span style=\"font-weight: 400;\">Not on its own<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes, this is one of its core jobs.<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Handles failure recovery?<\/b><\/td>\n<td><span style=\"font-weight: 400;\">No<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes, it automatically replaces failed containers.<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Fruit-seller analogy<\/b><\/td>\n<td><span style=\"font-weight: 400;\">The sealed container protecting one type of fruit<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The whole operation managing hundreds of containers, warehouses, and deliveries<\/span><\/td>\n<\/tr>\n<tr>\n<td><b>Do you need both?<\/b><\/td>\n<td><span style=\"font-weight: 400;\">Yes, in most real-world workflows<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes, Kubernetes typically manages containers. that Docker created<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><b>Kubernetes in the Cloud<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Running Kubernetes yourself, from scratch, means setting up and maintaining the entire control plane we talked about earlier, the brain of the operation. That is a real technical undertaking, and most businesses do not want to spend their time managing that infrastructure themselves. This is exactly why the major cloud providers now offer managed Kubernetes services, where they handle the control plane for you, and you just focus on running your actual application on top of it.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The three big ones you will come across constantly are:<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>Amazon EKS (Elastic Kubernetes Service):\u00a0<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Amazon&#8217;s managed Kubernetes offering on AWS. If you are already running your infrastructure on AWS, this is the natural way to run Kubernetes there without managing the control plane yourself.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>Azure AKS (Azure Kubernetes Service):\u00a0<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Microsoft&#8217;s equivalent on Azure, offering the same managed convenience for businesses already invested in the Azure ecosystem.<\/span><\/p>\n<ul>\n<li aria-level=\"1\">\n<h3><b>Google GKE (Google Kubernetes Engine):\u00a0<\/b><\/h3>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Google&#8217;s managed Kubernetes service, and it&#8217;s worth mentioning that Google is actually where Kubernetes originally came from, so GKE tends to be closely tied to the latest Kubernetes developments.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">All three do fundamentally the same job: they take the hardest, most technical part of running Kubernetes, the control plane, off your plate, so you get the benefits of orchestration without needing a dedicated team just to keep the underlying system alive.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">None of this changes the core idea we have covered throughout this guide, though. Whichever managed service you choose, you are still working with the same clusters, nodes, pods, and deployments explained earlier; the cloud provider is just handling the &#8220;brain&#8221; of the operation on your behalf.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you are exploring Kubernetes but are not tied to a specific cloud provider yet, this is also where the right hosting foundation matters. <a href=\"https:\/\/www.host.co.in\/hosting\/cloud-hosting\">host.co.in&#8217;s cloud Hosting<\/a> and <\/span>VPS hosting<span style=\"font-weight: 400;\"> give you the infrastructure to run and scale containerised applications reliably, without locking you into one provider&#8217;s ecosystem before you have decided what your setup actually needs.<\/span><\/p>\n<h2><b>FAQs About Kubernetes<\/b><\/h2>\n<p><b>What is Kubernetes in simple words?<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Kubernetes is a system that automatically manages containers for you \u2014 starting them, keeping them running, replacing them if they fail, and adding more when demand increases, without you needing to watch over them manually.<\/span><\/p>\n<p><b>What is Kubernetes, with an example?<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0An online store running a big sale is a good real-world case. Traffic spikes suddenly, so Kubernetes can automatically start more containers when scaling has been configured, then scale back down once the sale ends. If a container crashes under pressure, Kubernetes replaces it without anyone needing to notice.<\/span><\/p>\n<p><b>How does Kubernetes work?\u00a0<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Kubernetes works by constantly checking what you told it you want \u2013 say, &#8220;always keep five copies of this running&#8221; \u2013 against what is actually happening and automatically fixing any gap between the two. The control plane makes the decisions, and the nodes and pods carry them out.<\/span><\/p>\n<p><b>Does using Kubernetes mean I no longer need Docker?\u00a0<\/b><\/p>\n<p><span style=\"font-weight: 400;\">No, this is a common misunderstanding. You can still use Docker to build your application into a container image, but Kubernetes does not require Docker as its container runtime. Kubernetes takes over the management of containers once the image is available, using a compatible container runtime underneath.<\/span><\/p>\n<p><b>Is Kubernetes only for large companies?\u00a0<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is genuinely more common in larger, complex setups, since that is where its scaling and self-healing capabilities earn their keep the most. A small project running on one server rarely needs it. Kubernetes starts to make real sense once you have multiple containers, unpredictable traffic, or a genuine need for things to keep running without manual intervention.<\/span><\/p>\n<p><b>Do I need to know how to code to use Kubernetes?<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0Not to understand what it does \u2013 no, that is exactly why this guide has avoided technical jargon throughout. Actually setting up and configuring a Kubernetes cluster does need technical skill, which is part of why managed services like AWS&#8217;s EKS or Google&#8217;s GKE exist, handling the harder setup work for you.<\/span><\/p>\n<p><b>What are the main features of Kubernetes?\u00a0<\/b><\/p>\n<p><span style=\"font-weight: 400;\">This is the main reason behind the existence of key components such as scaling (enabling addition\/removal of containers according to demand, depending on configuration for scaling), self-healing (replacement of Pods that have failed), and load balancing (balancing of the load across available backends)<\/span><\/p>\n<h2><b>Wrapping Up: Why Kubernetes Matters<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Kubernetes is there to automate the heavy lifting of running containers at scale. Orchestration, scaling, networking, self-healing. One system does it instead of a human having to do it for every piece. Back to the beginning:\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">With Docker, you can package an application into a container image designed to run consistently across environments, and Kubernetes can take that image and run it reliably, at scale, across many machines. They&#8217;re not two tools fighting over the same function.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">They&#8217;re two different parts of a common container workflow.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Whether you&#8217;re packaging your first container or running hundreds of them within a full cluster, it all needs real infrastructure underneath to actually run on <a href=\"https:\/\/www.host.co.in\/hosting\/vps-hosting\">host.co.in&#8217;s VPS Hosting<\/a> and <\/span>cloud hosting <span style=\"font-weight: 400;\">provide that foundation, built to support containerised applications as they grow from a single container to a fully orchestrated cluster.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When we talk about Kubernetes, imagine a fruit seller selling five different types of fruit, each requiring a different storage condition to stay fresh. Now, the fruit seller needs to transfer this fruit to retailers across different cities and needs to make sure every fruit stays safe and fresh no matter where it is going. [&hellip;]<\/p>\n","protected":false},"author":30,"featured_media":7811,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-7810","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-hosting"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Prathamesh Suryawanshi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Host.co.in Blog: Expert Insights on Web Hosting, Servers, and Digital Growth | Latest Technology Blogs\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"What Is Kubernetes? Features, Benefits, and How It Works\" \/>\n\t\t<meta property=\"og:description\" content=\"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-08-25T07:08:12+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-08-25T07:08:12+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/host.co.in.india\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@hostindia\" \/>\n\t\t<meta name=\"twitter:title\" content=\"What Is Kubernetes? Features, Benefits, and How It Works\" \/>\n\t\t<meta name=\"twitter:description\" content=\"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@hostindia\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#article\",\"name\":\"What Is Kubernetes? Features, Benefits, and How It Works\",\"headline\":\"What Is Kubernetes? A Non-Developer&#8217;s Guide\",\"author\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/author\\\/prathamesh-suryawanshi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/what-is-kubernetes.png\",\"width\":1536,\"height\":1024,\"caption\":\"What Is Kubernetes? A Non-Developer's Guide\"},\"datePublished\":\"2026-08-25T12:38:12+05:30\",\"dateModified\":\"2026-08-25T12:38:12+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#webpage\"},\"articleSection\":\"Web Hosting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.host.co.in\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/category\\\/web-hosting\\\/#listItem\",\"name\":\"Web Hosting\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/category\\\/web-hosting\\\/#listItem\",\"position\":2,\"name\":\"Web Hosting\",\"item\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/category\\\/web-hosting\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#listItem\",\"name\":\"What Is Kubernetes? A Non-Developer&#8217;s Guide\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#listItem\",\"position\":3,\"name\":\"What Is Kubernetes? A Non-Developer&#8217;s Guide\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/category\\\/web-hosting\\\/#listItem\",\"name\":\"Web Hosting\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/#organization\",\"name\":\"Host.co.in\",\"description\":\"Latest Technology Blogs\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Host-Logo.png\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/host.co.in.india\\\/\",\"https:\\\/\\\/twitter.com\\\/hostindia\",\"https:\\\/\\\/www.instagram.com\\\/Host.co.in\\\/\",\"https:\\\/\\\/in.pinterest.com\\\/CloudHostingIndia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UChWntAsR9_PYB0vfNBpAMVw\",\"https:\\\/\\\/in.linkedin.com\\\/company\\\/host-co-in-india\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/author\\\/prathamesh-suryawanshi\\\/#author\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/author\\\/prathamesh-suryawanshi\\\/\",\"name\":\"Prathamesh Suryawanshi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d1736df9a98c0e2999b6b48c730136fab62bd7f8e61fbf942dc629a7dab7ae1f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Prathamesh Suryawanshi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#webpage\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/\",\"name\":\"What Is Kubernetes? Features, Benefits, and How It Works\",\"description\":\"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/author\\\/prathamesh-suryawanshi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/author\\\/prathamesh-suryawanshi\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/what-is-kubernetes.png\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#mainImage\",\"width\":1536,\"height\":1024,\"caption\":\"What Is Kubernetes? A Non-Developer's Guide\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/what-is-kubernetes\\\/#mainImage\"},\"datePublished\":\"2026-08-25T12:38:12+05:30\",\"dateModified\":\"2026-08-25T12:38:12+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/\",\"name\":\"HOST.CO.IN BLOG\",\"description\":\"Latest Technology Blogs\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"What Is Kubernetes? Features, Benefits, and How It Works","description":"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.","canonical_url":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#article","name":"What Is Kubernetes? Features, Benefits, and How It Works","headline":"What Is Kubernetes? A Non-Developer&#8217;s Guide","author":{"@id":"https:\/\/www.host.co.in\/blog\/author\/prathamesh-suryawanshi\/#author"},"publisher":{"@id":"https:\/\/www.host.co.in\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/blog\/wp-content\/uploads\/2026\/08\/what-is-kubernetes.png","width":1536,"height":1024,"caption":"What Is Kubernetes? A Non-Developer's Guide"},"datePublished":"2026-08-25T12:38:12+05:30","dateModified":"2026-08-25T12:38:12+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#webpage"},"isPartOf":{"@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#webpage"},"articleSection":"Web Hosting"},{"@type":"BreadcrumbList","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.host.co.in\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/#listItem","name":"Web Hosting"}},{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/#listItem","position":2,"name":"Web Hosting","item":"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#listItem","name":"What Is Kubernetes? A Non-Developer&#8217;s Guide"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#listItem","position":3,"name":"What Is Kubernetes? A Non-Developer&#8217;s Guide","previousItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/#listItem","name":"Web Hosting"}}]},{"@type":"Organization","@id":"https:\/\/www.host.co.in\/blog\/#organization","name":"Host.co.in","description":"Latest Technology Blogs","url":"https:\/\/www.host.co.in\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/blog\/wp-content\/uploads\/2023\/06\/Host-Logo.png","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#organizationLogo"},"image":{"@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/host.co.in.india\/","https:\/\/twitter.com\/hostindia","https:\/\/www.instagram.com\/Host.co.in\/","https:\/\/in.pinterest.com\/CloudHostingIndia\/","https:\/\/www.youtube.com\/channel\/UChWntAsR9_PYB0vfNBpAMVw","https:\/\/in.linkedin.com\/company\/host-co-in-india"]},{"@type":"Person","@id":"https:\/\/www.host.co.in\/blog\/author\/prathamesh-suryawanshi\/#author","url":"https:\/\/www.host.co.in\/blog\/author\/prathamesh-suryawanshi\/","name":"Prathamesh Suryawanshi","image":{"@type":"ImageObject","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d1736df9a98c0e2999b6b48c730136fab62bd7f8e61fbf942dc629a7dab7ae1f?s=96&d=mm&r=g","width":96,"height":96,"caption":"Prathamesh Suryawanshi"}},{"@type":"WebPage","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#webpage","url":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/","name":"What Is Kubernetes? Features, Benefits, and How It Works","description":"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.host.co.in\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#breadcrumblist"},"author":{"@id":"https:\/\/www.host.co.in\/blog\/author\/prathamesh-suryawanshi\/#author"},"creator":{"@id":"https:\/\/www.host.co.in\/blog\/author\/prathamesh-suryawanshi\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/blog\/wp-content\/uploads\/2026\/08\/what-is-kubernetes.png","@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#mainImage","width":1536,"height":1024,"caption":"What Is Kubernetes? A Non-Developer's Guide"},"primaryImageOfPage":{"@id":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/#mainImage"},"datePublished":"2026-08-25T12:38:12+05:30","dateModified":"2026-08-25T12:38:12+05:30"},{"@type":"WebSite","@id":"https:\/\/www.host.co.in\/blog\/#website","url":"https:\/\/www.host.co.in\/blog\/","name":"HOST.CO.IN BLOG","description":"Latest Technology Blogs","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.host.co.in\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Host.co.in Blog: Expert Insights on Web Hosting, Servers, and Digital Growth | Latest Technology Blogs","og:type":"article","og:title":"What Is Kubernetes? Features, Benefits, and How It Works","og:description":"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.","og:url":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/","article:published_time":"2026-08-25T07:08:12+00:00","article:modified_time":"2026-08-25T07:08:12+00:00","article:publisher":"https:\/\/www.facebook.com\/host.co.in.india\/","twitter:card":"summary_large_image","twitter:site":"@hostindia","twitter:title":"What Is Kubernetes? Features, Benefits, and How It Works","twitter:description":"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.","twitter:creator":"@hostindia"},"aioseo_meta_data":{"post_id":"7810","title":"What Is Kubernetes? Features, Benefits, and How It Works","description":"What is Kubernetes? Learn how Kubernetes works, its key features, benefits, architecture, and how it helps manage containerised applications.","keywords":null,"keyphrases":{"focus":{"keyphrase":"Kubernetes","score":0,"analysis":[]},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-08-25 07:01:50","updated":"2026-08-25 07:58:04","seo_analyzer_scan_date":null,"focus_keyword":"Kubernetes","additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.host.co.in\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/\" title=\"Web Hosting\">Web Hosting<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tWhat Is Kubernetes? A Non-Developer\u2019s Guide\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.host.co.in\/blog"},{"label":"Web Hosting","link":"https:\/\/www.host.co.in\/blog\/category\/web-hosting\/"},{"label":"What Is Kubernetes? A Non-Developer&#8217;s Guide","link":"https:\/\/www.host.co.in\/blog\/what-is-kubernetes\/"}],"_links":{"self":[{"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/posts\/7810","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/comments?post=7810"}],"version-history":[{"count":1,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/posts\/7810\/revisions"}],"predecessor-version":[{"id":7812,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/posts\/7810\/revisions\/7812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/media\/7811"}],"wp:attachment":[{"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/media?parent=7810"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/categories?post=7810"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.host.co.in\/blog\/wp-json\/wp\/v2\/tags?post=7810"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}