Join us

ContentUpdates and recent posts about Kubernetes..
 Activity
@prolixalias started using tool Kubernetes , 3 months, 3 weeks ago.
News FAUN.dev() Team
@kaptain shared an update, 3 months, 3 weeks ago
FAUN.dev()

Kubernetes Gateway API 1.4.0 Makes Network Routing More Declarative and Reliable

Istio Kubernetes

Kubernetes releases Gateway API 1.4.0, enhancing service networking with new features like secure TLS connections and improved configuration options.

Gateway API Logo
 Activity
@sahil started using tool Kubernetes , 4 months, 2 weeks ago.
 Activity
@joey started using tool Kubernetes , 4 months, 2 weeks ago.
News FAUN.dev() Team
@kaptain shared an update, 4 months, 2 weeks ago
FAUN.dev()

Mirantis Launches Pelagia for Enhanced Ceph Management on Kubernetes

Rook Pelagia Kubernetes Ceph

Mirantis introduces Pelagia, an open source tool to streamline Ceph storage management on Kubernetes, advancing automation and integration with GitOps workflows.

News FAUN.dev() Team
@kaptain shared an update, 4 months, 2 weeks ago
FAUN.dev()

Mirantis Releases k0rdent 1.2.0 - The Open Source Distributed Container Management Platform

Kubernetes k0rdent

Mirantis releases k0rdent 1.2.0, advancing Kubernetes management with new features, ARM64 support, and improved observability using OpenTelemetry.

Mirantis Releases k0rdent 1.2.0 - The Open Source Distributed Container Management Platform
Story Palark Team
@shurup shared a post, 4 months, 3 weeks ago
@palark

New features introduced in Kubernetes 1.34

Kubernetes

Recently, the latest Kubernetes version, v1.34, was released with 13 new alpha features on board. They include: - KYAML, a new dialect of YAML for Kubernetes manifests, which is still compatible with all existing tooling; - asynchronous API calls to kube-apiserver during scheduling; - various enhanc..

kubernetes 1.34 release
 Activity
@bergerx started using tool Kubernetes , 4 months, 3 weeks ago.
News FAUN.dev() Team
@kaptain shared an update, 4 months, 3 weeks ago
FAUN.dev()

Azure Outage: Kubernetes Crash Hits Teams, Minecraft in EMEA Regions

Kubernetes

A Kubernetes crash caused a major Azure outage, impacting Teams and Minecraft in EMEA, with Microsoft working to restore services.

Azure Outage: Kubernetes Crash Hits Teams, Minecraft in EMEA Regions
News FAUN.dev() Team
@devopslinks shared an update, 5 months ago
FAUN.dev()

Qovery Secures $13M Series A to Boost DevOps Automation Platform

Kubernetes

Qovery raises $13M Series A to enhance its DevOps automation platform, addressing the DevOps engineer shortage and supporting regional expansion and AI-driven development.

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.