Best of Kubernetes2025

  1. 1
    Article
    Avatar of bytebytegoByteByteGo·1y

    EP144: The 9 Algorithms That Dominate Our World

    Explore the 9 algorithms that dominate our world, understand the role of an API gateway in system design, learn how gRPC works, and compare Docker with Kubernetes for managing containerized applications. Also, review various API architecture styles and get insights into CI/CD pipeline and different app architecture patterns.

  2. 2
    Article
    Avatar of bytebytegoByteByteGo·1y

    EP150: 12 Algorithms for System Design Interviews

    Learn about 12 key algorithms used in system design interviews, including Bloom Filter, Geohash, and Consistent Hashing. Understand the workings of Kubernetes, an open-source container orchestration platform, and explore the architecture of PostgreSQL, the popular database system. Additionally, discover important tips for API security.

  3. 3
    Article
    Avatar of javarevisitedJavarevisited·46w

    How I Finally Understood Docker and Kubernetes

    A developer shares their journey from confusion to understanding Docker and Kubernetes by focusing on practical problems rather than technical jargon. Docker is explained as a way to package applications with their dependencies into portable containers, while Kubernetes is presented as a system for managing multiple containers in coordination. The author emphasizes learning through hands-on experience with simple projects, starting with single containers and gradually building up to multi-container systems with deployments and services.

  4. 4
    Article
    Avatar of communityCommunity Picks·42w

    An open source alternative to Heroku

    Canine is an open source deployment platform designed as a cost-effective alternative to Heroku. It offers GitHub integration, one-click deployments, automatic SSL certificate management, and Kubernetes simplification. The platform supports over 200 cloud providers to avoid vendor lock-in, includes autoscaling capabilities, and can deploy over 10,000 open source projects at no additional cost. Users can either self-host Canine or use the hosted version, with the core platform being free and open source.

  5. 5
    Article
    Avatar of hnHacker News·1y

    Self Hosting Like Its 2025

    Self-hosting has become a popular alternative to using data-collecting services. The post discusses the benefits of self-hosting, highlights helpful yet lesser-known software, and provides insights into container runtimes like Docker, Podman, and Kubernetes. It also covers web-based tools for managing containers such as Portainer and Dockge, and discusses reverse proxy and VPN solutions like Pangolin and NetBird. Additionally, it references resources for finding more applications and tools to enhance the self-hosting experience.

  6. 6
    Article
    Avatar of itnextITNEXT·1y

    Essential CLI/TUI Tools for Developers

    Discover a categorized list of essential CLI/TUI tools that can boost developer productivity and make terminal usage more enjoyable. The post covers tools for managing Kubernetes clusters, container metrics, file and text operations, Git commands, development tasks, and networking. Each tool is briefly described with its main features and use cases.

  7. 7
    Article
    Avatar of bytebytegoByteByteGo·45w

    Shopify Tech Stack

    Shopify processes massive scale with 173 billion requests on Black Friday using a tech stack built on Ruby on Rails, React, MySQL, and Kafka. The platform uses a modular monolith architecture with strict component boundaries, database sharding through isolated pods, and extensive tooling investments including YJIT compiler and Sorbet type checker. The infrastructure handles 284 million requests per minute at peak, 66 million Kafka messages per second, and processes 216 million ML embeddings daily for semantic search, all while maintaining developer productivity through comprehensive CI/CD pipelines and observability tools.

  8. 8
    Article
    Avatar of codemotionCodemotion·42w

    “A Programmer Who Reads Is Worth Two”: Tech Books for Summer 2025

    A curated list of 14 technical books for summer 2025 reading, covering diverse topics from building LLMs from scratch and AI agents to cybersecurity, Kubernetes, quantum computing, and documentation. The selection includes both hands-on technical guides and broader philosophical works on AI's impact on society, catering to developers looking to expand their knowledge across multiple domains.

  9. 9
    Article
    Avatar of systemdesigncodexSystem Design Codex·1y

    5 Must-Know Deployment Strategies

    Deploying new features to an application is a critical phase in the software development lifecycle. This post explores five popular deployment strategies—Blue/Green Deployment, Canary Deployment, A/B Testing, Feature Flag Deployment, and Rolling Deployment—detailing their pros, cons, and use cases. Choosing the right strategy depends on factors such as downtime tolerance, user base size, infrastructure complexity, cost, and the need for experimentation.

  10. 10
    Article
    Avatar of freecodecampfreeCodeCamp·1y

    Essential CLI/TUI Tools for Developers

    Developers extensively using terminals can enhance their productivity through various CLI/TUI tools. This selection includes tools for Kubernetes management, container monitoring, text processing, Git handling, and more. Each tool is presented with an overview, key features, and installation instructions for different operating systems.

  11. 11
    Video
    Avatar of javascriptmasteryJavaScript Mastery·32w

    DevOps Full Course | Build and Deploy a Scalable Production Ready API

    A comprehensive DevOps course covering fundamentals through production deployment. Teaches Git version control, CI/CD pipelines with GitHub Actions, Docker containerization, Kubernetes orchestration, and infrastructure as code. Includes hands-on project building a production-ready API with authentication, database integration, monitoring, and security features using modern tools like PostgreSQL, Neon DB, and Arkjet.

  12. 12
    Article
    Avatar of systemdesigncodexSystem Design Codex·52w

    How Kubernetes Works Internally?

    Kubernetes is an open-source container orchestration platform designed to automate the deployment, scaling, and management of applications. Developers interact with Kubernetes using manifest files to define the desired state of their applications. The Control Plane, including components like the API Server, Scheduler, Controller Manager, and etcd, manages container orchestration, while Worker Nodes execute the workloads. Kubernetes continuously reconciles the actual state with the desired state, ensuring self-healing and high reliability for application deployment.

  13. 13
    Article
    Avatar of freecodecampfreeCodeCamp·51w

    How to Build a Production-Ready DevOps Pipeline with Free Tools

    Learn how to build a production-ready DevOps pipeline using free tools, featuring GitHub Actions for CI/CD, Terraform for infrastructure setup, Docker optimization techniques, K3d for Kubernetes, and various monitoring and security solutions. This guide is ideal for small projects, offering a step-by-step walkthrough of creating, testing, deploying, and securing applications efficiently without spending money.

  14. 14
    Article
    Avatar of devtoDEV·1y

    System Design for DevOps Engineers

    This guide dives into system design, covering topics like communication protocols, CI/CD, architecture patterns, databases, caches, microservices, payment systems, and developer productivity tools with a focus on DevOps and security. It compares REST and GraphQL, explains how gRPC works, discusses webhooks, outlines common strategies to improve API performance, and reviews the evolution of HTTP protocols from 1.0 to HTTP/3.0. The post emphasizes the importance of efficient and safe API design and explores various caching strategies and best practices for microservice architecture.

  15. 15
    Article
    Avatar of ubuntuUbuntu·49w

    Building an end-to-end Retrieval- Augmented Generation (RAG) workflow

    This post provides a comprehensive guide on setting up a retrieval-augmented generation (RAG) pipeline using open source tools like Charmed OpenSearch and KServe, specifically in Azure and Ubuntu environments. It covers key components of a RAG system, including data processing, embedding models, retrieval, vector databases, and more, while emphasizing the importance of scalability, security, and the use of open source solutions.

  16. 16
    Article
    Avatar of devtronDevtron·45w

    CI/CD Best Practices for Microservice Architecture

    Traditional CI/CD pipelines fail to scale with microservices architecture. Each microservice requires isolated pipelines with independent versioning, progressive deployment strategies like canary and blue/green deployments, proper access controls, and comprehensive observability. Key principles include service-level pipeline isolation, semantic versioning, GitOps workflows, role-based access control, standardized templates, security scanning, and tracking DORA metrics. Platforms like Devtron help teams achieve 40% MTTR reduction, 3x deployment frequency increase, and faster service onboarding through Kubernetes-native CI/CD automation.

  17. 17
    Article
    Avatar of devtronDevtron·1y

    How to scale your CI/CD process in 4 steps

    Scaling a CI/CD process involves more than just adding resources; it requires managing complexity to avoid slow deployments, high failure rates, and developer frustration. This involves understanding the critical stages of CI/CD such as code commit, unit tests, build, and deploy, and integrating tools into a unified platform for simplicity and security. Traditional CI/CD pipelines often fail to scale due to tool sprawl and the limitations of conventional tools. Devtron offers solutions to these challenges by providing a unified CI/CD management platform with features like automated security scanning and efficient resource use, ensuring minimal operational overhead and maximized development productivity.

  18. 18
    Article
    Avatar of java_libhuntAwesome Java Newsletter·1y

    CI/CD DevOps Pipeline Project: Deployment of Java Application on Kubernetes

    The project outlines the implementation of a CI/CD pipeline to deploy a Java application on Kubernetes. It leverages Jenkins for orchestration, along with tools like Maven, SonarQube, Trivy, and Prometheus for build automation, code quality, security scanning, and monitoring. The setup involves detailed steps for configuring the required infrastructure, integrating DevOps tools, and setting up a monitoring stack with Prometheus and Grafana.

  19. 19
    Video
    Avatar of codeheadCodeHead·28w

    Should YOU Become A Devops Engineer

    DevOps engineering combines development and operations to automate software delivery through CI/CD pipelines, containerization, and infrastructure management. The role requires skills in Linux, scripting, cloud platforms, and tools like Docker, Kubernetes, and Terraform. DevOps engineers earn competitive salaries (up to $190,000+) due to specialized expertise, but the work focuses on infrastructure, automation, and system stability rather than product development. Success requires enjoying problem-solving, automation, and behind-the-scenes technical work.

  20. 20
    Article
    Avatar of swirlaiSwirlAI·1y

    Data Pipelines in Machine Learning Systems.

    This tutorial guides through implementing a real-time data ingestion pipeline for machine learning systems using FastAPI and Apache Spark. Key steps include writing a FastAPI collector application, downloading and pushing data from the internet to this application, and processing the data via a Spark ETL pipeline managed by Airflow, all deployed on the Nebius AI Cloud platform. The tutorial emphasizes ensuring data quality and integrity at each stage and showcases setting up Kubernetes clusters for high availability and managed data operations.

  21. 21
    Article
    Avatar of hnHacker News·1y

    We switched from Java to Go and don't regret it

    Switching from Java/Kotlin to Go proved beneficial with faster startup times, lower resource consumption, and a more lightweight ecosystem. While Java still excels in some areas, Go offers advantages for cloud-native applications and Kubernetes tooling. The transition wasn't as challenging as expected, and the benefits were quickly evident.

  22. 22
    Article
    Avatar of collectionsCollections·1y

    Understanding Containers and Pods: An In-Depth Introduction

    Containers provide a consistent and portable method to encapsulate applications with their dependencies, ensuring seamless operation across environments. Kubernetes extends the utility of containers by orchestrating their deployment, scaling, and management at scale. In Kubernetes, pods are the smallest deployable units, containing one or more containers and facilitating efficient resource sharing and application management.

  23. 23
    Article
    Avatar of zalandoZalando·1y

    From Event-Driven Chaos to a Blazingly Fast Serving API

    Zalando transitioned from an event-driven system to a high-performance API capable of serving millions of requests per second with low latency. This project addressed the scalability issues of the previous architecture and streamlined product and offer data handling. Key components included the Product Read API (PRAPI) with caching and load balancing optimizations. The transition also involved contributing improvements to open-source load balancers and a team restructure aligned with Conway’s Law and CQRS principles.

  24. 24
    Article
    Avatar of infoworldInfoWorld·25w

    What’s the Go language really good for?

    Go has evolved from a curiosity to a battle-tested language powering major cloud-native projects like Docker and Kubernetes. Known for its simplicity, fast compilation, and built-in concurrency features (goroutines and channels), Go excels at building distributed network services, cloud applications, and standalone tools. While it offers automatic memory management and cross-platform portability, it deliberately omits features like macros and produces larger binaries. The language recently added generics in version 1.18 after years of deliberation. Go's future remains strong in cloud infrastructure and network services, with emerging interest in AI workloads, though it faces competition from Python in ML/AI and Rust in systems programming.

  25. 25
    Article
    Avatar of bytebytegoByteByteGo·42w

    EP169: RAG vs Agentic RAG

    RAG (Retrieval Augmented Generation) combines information retrieval with large language models, but traditional RAG has limitations in adaptability and real-time processing. Agentic RAG introduces AI agents that make decisions, select tools, and refine queries for more accurate responses. The comparison covers Kubernetes fundamentals including control planes, nodes, and key resources like Pods and Deployments. Six space-efficient data structures are highlighted: Bloom Filter, HyperLogLog, Cuckoo Filter, Minhash, SkipList, and Count-Min Sketch. Database normalization forms from 1NF to 4NF are explained for eliminating redundancy and enforcing data integrity.