DEV Community

Cover image for Kubernetes Overview
Kalaimani
Kalaimani

Posted on

Kubernetes Overview

This is first of a series of bite sized posts about Kubernetes technology in simple terms, targeted for beginners, especially for application developers. Here we don't focus much on Kubernetes cluster administration.

Kubernetes is an open-source container orchestration platform.

Container is an virtually isolated application process along with its runtime environment. Container is created from its image.

Container image is a portable bundle of an application along with all its runtime dependencies.

Container orchestration is managing containers workloads at large scale, with the help of container runtimes. Some examples of container orchestration platforms are Kubernetes, Docker Swarm and Hashicorp Nomad.

Container runtime is service that manages execution lifecycle of the containers. Examples of container runtimes are CRI-O, Dockerd, Containerd, etc..

Why Kubernetes?

  • Automatically brings current state of the application workload to desired state of deployment.
  • Efficiently allocate resources to application workloads.
  • It can horizontal scale itself as well as the application work loads.
  • It can automatically recover the applications from node failures.
  • It has builtin components for service discovery and load balancing.
  • Provides networking with both IPv4 and IPv6.
  • Provides storage abstractions which can be backed by various types of storage systems such as EBS, EFS, FSx, S3, and more..
  • Offers builtin Secret and configuration management.
  • Supports Batch execution workloads.
  • It is extensible though plugins.

Billboard image

Deploy and scale your apps on AWS and GCP with a world class developer experience

Coherence makes it easy to set up and maintain cloud infrastructure. Harness the extensibility, compliance and cost efficiency of the cloud.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay