#Kubernetes
12 posts
Accelerating Kubernetes Development with Amazon EKS MCP Server
Amazon recently introduced an innovative open-source tool called the Model Context Protocol (MCP) Server for Amazon EKS, designed to transform how developers build and manage Kubernetes-native…
Critical Ingress-NGINX Vulnerabilities in Kubernetes: What You Need to Know
In the fast-moving world of Kubernetes security, misconfigurations and overlooked edge cases can expose entire clusters to serious risk. Recently, researchers from Wiz uncovered a set of high-impact…
Route vs Ingress on OpenShift Container Platform (OCP)
Introduction When deploying applications on OpenShift Container Platform (OCP), exposing services to external users requires either Routes or Ingress. Both provide external access to workloads, but…
How Kubernetes QoS Prevents OOMKilled Errors
Kubernetes employs Quality of Service (QoS) classes to manage and prioritize pod resources, thereby mitigating Out of Memory (OOMKilled) errors. Understanding OOMKilled Errors OOMKilled errors occur…
Deploying vCluster on AWS EKS Using Helm
Introduction vCluster is a lightweight, virtual Kubernetes cluster solution that allows running multiple Kubernetes clusters within a single Kubernetes host cluster. It is useful for multi-tenancy,…
Kubernetes Multitenancy and Tenant Isolation
k As organizations adopt Kubernetes for large-scale applications, multitenancy becomes a critical concern. This article explores different approaches to making a Kubernetes cluster multitenant while…
Deploying Dify on Kubernetes with Helm
Introduction Dify is an open-source LLM-powered application development platform that simplifies prototyping, deploying, and managing AI applications. It provides a visual workflow builder, prompt…
How to Use Classic Load Balancer by Default in AWS EKS
Introduction By default, Amazon EKS provisions a Network Load Balancer (NLB) when creating a LoadBalancer type service using the AWS Load Balancer Controller. However, if you need to use a Classic…
Cilium vs. Calico: A Comprehensive Comparison of Kubernetes Networking and Security
In the realm of Kubernetes networking, selecting the appropriate networking solution is crucial for ensuring optimal performance, security, and scalability. Two prominent contenders in this space are…
Understanding Kubernetes Gateway API: A New Era of Traffic Management
Introduction Kubernetes has revolutionized cloud-native application deployment, but managing ingress and traffic routing has always been a challenge. While the Ingress API has served well, it has…
Optimizing Kubernetes Traffic Routing with PreferClose in Kubernetes 1.30+
Introduction Before Kubernetes 1.30, a Kubernetes Service guaranteed only a list of endpoints for routing traffic. However, there was no intelligent routing within that groupall traffic was randomly…
Deploying a Hexo Blog on Kubernetes with GitHub Actions
In this post, we'll cover the steps to deploy a Hexo blog on Kubernetes using GitHub Actions. This setup automates the build, containerization, and deployment of the blog to your Kubernetes cluster.…