Join us

ContentUpdates and recent posts about Kubernetes..
 Activity
@oscarrs started using Kubernetes , 4 years, 4 months ago.
 Activity
@magalix started using Kubernetes , 4 years, 4 months ago.
 Activity
@sush179 started using Kubernetes , 4 years, 4 months ago.
 Activity
@mail4prtham started using Kubernetes , 4 years, 4 months ago.
Episode
@eon01 shared an episode, 4 years, 4 months ago
Founder, FAUN.dev

The Four Golden Signals, SlO, SLI, and Kubernetes

Kubernetes

It's 2018 in Kubecon North America, a loud echo in the microphone, and then Ben Sigelman is on the stage.

There is conventional wisdom that observing microservice is hard. Google and Facebook solved this problem, right? They solved it in a way that allowed Observability to scale to multiple orders of magnitude to suit their use cases.

The prevailing assumption that we needed to sacrifice features in order to scale is wrong. In other words, the notion that people need to solve scalability problems as a tradeoff for having a powerful set of features is incorrect.

People assume that you need these three pillars of Observability: metrics, logging, and tracing, and all of a sudden, everything is solved. However, more often than not, this is not the case.

Today we are going to discuss Observability and why this is a critical day-2 operation in Kubernetes. Next, we will discuss the problems with Observability and leverage its three pillars to dive deep into some concepts like service level objectives, service level indicators, and finally, service level agreements.

4945330-1596200543700-e521c330956d.jpeg
 Activity
@acouedelo started using Kubernetes , 4 years, 4 months ago.
Story
@vvickky007 shared a post, 4 years, 4 months ago
Architect, Ericsson

QuickELK

Docker Helm Kubernetes

Quick Code to deploy ELK stack (Elasticsearch, Logstash, Kibana) and supporting services on Kubernetes Controlled Docker platform.

1_3C2dWo2QbJtFWef0luLelw.jpeg
Story
@contactmukul95 shared a post, 4 years, 4 months ago
Software Developer

Introduction to Kubernetes: What Problems Does It Solve?

Docker Azure Kubernetes

Kubernetes is an open source container orchestration platform for scheduling and automating the deployment, management and scaling of containerized applications. Containers operate in a multiple container architecture called a “cluster.” A Kubernetes cluster includes a container designated as a “master node” that schedules workloads for the rest of the containers — or “worker nodes” — in the cluster.

 Activity
@jkorell started using Kubernetes , 4 years, 4 months ago.
Episode FAUN.dev() Team
@eon01 shared an episode, 4 years, 4 months ago
Founder, FAUN.dev

Ubiquity, Security and Open Source

Docker Jenkins Kubernetes

It is the year 2017 Kelsey Hightower is on the KubeCon stage. The sound of the microphone starts echoing... Raise your hands if you think installing kubernetes is easy. This is how a well known Kubernetes advocate started his presentation.

4945330-1594383394176-7cdab2fa0339d.jpeg
Kubernetes, often abbreviated as K8s, is an open-source orchestration platform designed to automate the deployment, scaling, and management of containerized applications. It acts as a "brain" for your infrastructure, ensuring that your containers run exactly where and how they should across a cluster of physical or virtual machines, abstracting away the underlying hardware to treat the entire data center as a single computational resource.

At its core, Kubernetes operates on a declarative model: you define the "desired state" of your application—such as how many replicas should be running or how much CPU they should use - and the system continuously works to maintain that state. If a container crashes or a node fails, Kubernetes automatically detects the discrepancy and restarts or reschedules the workload to ensure zero downtime, providing a self-healing environment that is critical for modern, high-availability systems.

Beyond simple container management, Kubernetes provides a robust ecosystem for networking, storage, and security. It handles service discovery and load balancing internally, allowing containers to communicate seamlessly without hardcoded IP addresses, and orchestrates storage mounting from various providers. By standardizing how applications are deployed and scaled, Kubernetes enables developers to move from local development to global production with consistent and predictable results.