What I Learned Studying EKS Cluster Upgrades (Beyond Just "Click Upgrade")
I'm fairly new to SRE/DevOps, and one of the topics I recently spent time studying properly was EKS cluster upgrades . My first instinct, like most…
Tech news from the best sources
I'm fairly new to SRE/DevOps, and one of the topics I recently spent time studying properly was EKS cluster upgrades . My first instinct, like most…
Running Java and other JVM-based workloads in Kubernetes has long presented an infrastructure sizing challenge. During initialization, JVM applicati…
The cloud industry is changing fast. A few years ago, knowing how to launch a virtual machine was enough to get started with cloud computing. Today,…
Security Is Part of Reliability SREs think about availability, latency, and throughput. But a security breach is just another type of incident — oft…
If you have already explored Docker , you know how convenient containers are. You package your application, dependencies, and environment into a nea…
Hey all 👋 Sit tight! Because this is a little lengthy one. Last episode I closed by announcing that I would be adding two more nodes and bringing in…
Reading about chmod is not the same as typing it. Everyone who learned the terminal knows this, and everyone who teaches it says the same thing: you…
Привет! Я Костя Никитин, руководитель направления в одном из подразделений Т-Банка. Занимаюсь проектированием высоконагруженных систем — мы импортоз…
Running Kubernetes in an air-gapped environment is harder than it looks. Kubernetes pulls container images from registries. Control plane components…
My application was working again. That should have been the end of the problem. It was not. In [the first article in this series( https://blog.lalit…
Everything the MCP server could check through Part 2 lives inside the cluster. But "my pod can't reach S3" is very often not a Kubernetes problem at…
Изначально с Capabilities я лично столкнулся в своем проекте ServeHub-2 , когда настраивал контейнеры в docker-compose. Если быть более конкретным,…
Разбираем 22 альфа-фичи Kubernetes 1.37. Спойлер самого крутого и долгожданного: - Больше не нужно с нуля перезапускать приложения после каждого сбо…
Upgrading Kubernetes clusters across a large enterprise fleet is often a balancing act between staying current with security patches and avoiding ou…
YAML уже много лет остаётся стандартным способом писать манифесты Kubernetes. Любой пример, туториал и файл конфигурации, которые попадаются на глаз…
If you've ever spent 3 hours debugging a missing 2-space indentation in a 1,000-line Kubernetes YAML file or copy-pasting the same service definitio…
Short answer: for a Node.js app in Docker or Kubernetes, give startup, readiness, and liveness probes separate meanings, keep routine health traffic…
На мероприятиях по сетевой безопасности всё чаще обсуждают, как правильно соотносить показатели производительности сетевых средств защиты информации…
By combining ProgressivePerGroup with Placement decision groups, you can roll out add-on configuration changes in the order dev → stg → prod. In thi…
We have a web server container running the nginx image. The access and error logs generated by the web server are not critical enough to be placed o…
Installing Minikube on Debian Minikube is a practical way to run a small Kubernetes cluster on a Debian workstation or development instance. This gu…
Imagine you have one application running on a single server. Everything is fine. Then your users increase from 1,000 → 10,000 → 100,000 . Suddenly,…
Control Plane (Master) & Worker Nodes Control Plane components: API Server Scheduler Control Manager etcd Worker Node components: Container Runt…
I built a 3-tier application running on Amazon EKS, deployed by a GitHub Actions pipeline that runs on every merge to main . The first version of th…
Thanks for taking the time to read. If you’ve worked on AI platforms, cloud infrastructure, or platform engineering, I’d love to hear how your archi…
Все, кто работал с k8s, знают: что такое CNI, разбираются как его подключить и даже поверхностно могут понимать какой из предлагаемых…
Introduction: Kubernetes can feel overwhelming when you first hear terms like Pods, Services, and Deployments thrown around. In this first post of m…
Hey Dev Community! 👋 I’m Tejas, a DevOps Engineer from Bangalore, new to this platform. I work mostly with AWS, Kubernetes, Terraform, and Jenkins,…
Why the right question isn't "where do I start with Kubernetes", but "what problem am I actually solving". The claim that tends to bother people Eve…
The Setup Google's Online Boutique is an open-source 11-service e-commerce demo — Go, Python, Node.js, C#, and Java, all communicating over gRPC. It…