Shaik Mustafamustafa-k8s.hashnode.dev·Dec 1, 2024Scaling in Kubernetes: A Deep Dive into HPA and VPAAutoScaling in Deployment: As you know, to run the application we need CPU and memory. Sometimes, there will be a chance where the CPU gets loaded, and this might fail the server or affect the application. Now, we can’t afford the downtime of the app...94 likes·79 readsKubernetes
SREERAJ Rsreeraj6.hashnode.dev·Dec 1, 2024How to Design a High-Availability Application in KubernetesDesigning a high-availability (HA) application in Kubernetes requires careful consideration of various factors to ensure the application is scalable, reliable, and resilient to failures. In this guide, we’ll walk through the key components needed to ...Kubernetes
Subhanshu Mohan Guptablogs.subhanshumg.com·Nov 17, 2024Federated Learning for Distributed MLOps SecurityIntroduction As Machine Learning Operations (MLOps) scale across industries, safeguarding sensitive data while enabling distributed training becomes a significant challenge. Enter Federated Learning (FL) — a decentralized approach that trains models ...10 likes·42 readspysyft
TECH-NOTESblog-technotes4you.hashnode.dev·Oct 24, 2024K8s HorizontalPodAutoscaler (HPA)In this blog, I want to show you how to scale Kubernetes pods with Autoscaler. Horizontal scaling means that the response to increased load is to deploy more pods. If the load increases, the number of pods is scaled out to the maximum, and if the loa...54 readsKubernetesKubernetes
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 16, 2024☑️Day 45: Learning Horizontal Pod Autoscaler (HPA) in Kubernetes🚀🔹Table of Contents : Introduction Setting Up the Environment for HPA Task: Creating a Service and Deployment Using HPA Creating the hpa.yaml File Applying the YAML File Testing the Service Implementing Horizontal Pod Autoscaling Simulating...26 likesDevops
Subhanshu Mohan Guptablogs.subhanshumg.com·Sep 30, 2024Optimizing Costs for Cloud Architectures with Kubernetes WorkloadsIn this III part of my Kubernetes series, we will dive deep into Cost Estimation for Cloud Architectures, focusing on practical strategies for managing the cost of running Kubernetes workloads in cloud environments like AWS, GCP, and Azure. Managing ...12 likes·40 readsMastering Kubernetes: Revolutionizing Cloud-Native OperationsDevops
Rahul wathblog.aws-devops.blog·Aug 31, 2024Autoscaling Applications in Amazon EKS with Kubernetes Horizontal Pod Autoscaler (HPA)As your cloud-native applications scale in complexity and usage, managing performance and resource allocation becomes increasingly critical. Amazon Elastic Kubernetes Service (EKS) provides robust autoscaling capabilities to help you dynamically adju...AWS
Usama Aijazusamaaijaz.hashnode.dev·Aug 30, 2024Autoscaling in Kubernetes: A Beginner's GuideAutoscaling is a key feature in Kubernetes that allows your applications to handle varying workloads by automatically adjusting resources. There are three main types of autoscaling in Kubernetes: Horizontal Pod Autoscaler (HPA), Vertical Pod Autoscal...Kubernetes
Nile Bitsnilebits.hashnode.dev·Aug 21, 2024Advanced DevOps Techniques: Scaling Microservices with KubernetesScaling microservices has become a fundamental skill in modern DevOps, especially as applications grow in complexity and demand. Kubernetes, as the leading container orchestration platform, provides powerful tools to manage and scale microservices ef...Devops
Balabvm.hashnode.dev·Jul 24, 2024How to use Kubernetes Horizontal Pod AutoscalerWhat is Autoscaling and Why it is important? Autoscaling means dynamically allocating cluster resources such as CPU and memory to your application based on real time demand. This ensures that your application is having the right amount of resources t...86 readsKubernetes