Maxat Akbanovmaxat-akbanov.com·Dec 14, 2024Get started with AWS ECS (Elastic Container Service)Amazon Elastic Container Service (ECS) is a fully managed container orchestration service provided by AWS. It allows users to deploy, manage, and scale containerized applications. ECS can run containers on a cluster of Amazon EC2 instances or server...awsAWS
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Dec 12, 2024Supercharge Your Cluster: Implementing Descheduler on Kubernetes ClusterKubernetes provides a number of built-in functionalities to help with node workloads: NodeSelector, PodAffinity and Anti-PodAffinity. But those policies only apply when scheduling new pods. Once a pod is running, it doesn’t change in response to the ...descheduler
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Dec 11, 2024The One Trick for Deploying Cluster Autoscaler on Amazon EKS Cluster Using Helm That Nobody Talks AboutOverview :- Deploying the Cluster Autoscaler on Amazon EKS can be a challenging task, especially when using Helm. While many resources cover the basic steps, there’s one crucial trick that often goes unmentioned. This blog post will reveal this lesse...Kubernetes
Anique Ahmad Sarfrazanique.hashnode.dev·Dec 7, 2024Kubernetes Deployment: The ultimate guide1. Deployment Creation Imperative Command kubectl create deployment <deployment-name> --image=<image-name> --replicas=<number-of-replicas> Example: kubectl create deployment my-app --image=nginx:1.21 --replicas=3 Declarative Approach (YAML File) Cr...Kubernetes
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Dec 5, 2024Installing Robusta on Kubernetes Cluster: Your Ticket to Tech StardomOverview :- Robusta is a powerful tool for managing and monitoring Kubernetes clusters. It provides advanced observability, automation, and troubleshooting capabilities. In this blog post, we’ll walk through the process of installing Robusta on your ...robusta
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Dec 5, 2024SpringBoot + Kubernetes StatefulSets: Perfect Combo for Reliable Banking Apps!We have configured a deployment for the Banking App with 3 Pods, ensuring data safety by associating the data with a PersistentVolumeClaim (PVC). The PVC is connected to a PersistentVolume (PV), which is then linked to the host to provide the necessa...1 likeKubernetes
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Nov 29, 2024Revolutionize Your DevOps: Deploying SonarQube on Amazon EKS Cluster Using Helm ChartOverview :- SonarQube is a popular tool for continuous code quality inspection. It helps developers find and fix bugs, vulnerabilities, and code smells in their projects. Deploying SonarQube on an Amazon EKS (Elastic Kubernetes Service) cluster using...Kubernetes
Amit singh deoraamitsinghs.hashnode.dev·Nov 28, 2024Day 31 Task: Launching your First Kubernetes Cluster with Nginx runningTask 1: Installing Minikube What is Minikube? Minikube is your go-to tool for setting up a local Kubernetes cluster effortlessly. It's perfect for: Beginners to Kubernetes. Testing and development on your local machine. Exploring edge computing a...minikube
Shaik Mustafamustafa-k8s.hashnode.dev·Nov 25, 2024Well Explained Kubernetes ArchitectureHere, we’ll simplify the complexities of Kubernetes architecture—pods, nodes, and control planes—to help you master container orchestration. Join me as we explore and scale the world of Kubernetes, one post at a time! 💻⚙️ The Components of Kubernet...124 likes·249 readsKubernetes
Md Shahriyar Al Mustakim Mitulmitul-shahriyar.hashnode.dev·Nov 26, 2024Kubernetes 101: Part 13Designing a Kubernetes cluster If you goal is to make something for education purpose, a solution based on minikube or a single node cluster deployed using kbeadm on local VMs /GCP/AWS should do. If the goal is development/testing, multi node cluster...From Linux to DevOps Expertcluster