AMAbinash Mishrainabinashmishra.in·May 19, 2024 · 2 min readHelm BasicsHelm is a package manager for Kubernetes, which install, uninstall wizards and also its acts as a release manager helping us to upgrade pr rollback applications. helm charts: charts are a collection of files. They consists of the configuration detail...00
AMAbinash Mishrainabinashmishra.in·Feb 19, 2024 · 2 min readAKS Auto scalingWe have two properties in AKS autoscaling Cluster Autoscaler Horizontal Pod Autoscaler Cluster Autoscaler If pod demand changes, he Kubernetes cluster Autoscaler adjusts the number of nodes based on the requested compute resources in the node poo...00
AMAbinash Mishrainabinashmishra.in·Feb 16, 2024 · 1 min readRBAC in KubernetesRBAC stands for Role Based Access Control Under core api groups we have all objects: pods, deployments, Services, ReplicaSets, Statefulsets, jobs Role: A role can be used to grant access to resources in a namespace. apiVersion: rbac.authorization.k8...00
AMAbinash Mishrainabinashmishra.in·Feb 12, 2024 · 2 min readLinux commands : awk, sed, grep, expectawk: awk command treats the spaces as a delimiter for fields by default. awk 'command' <file-name> awk '{print}' awkcommand.txt awk '{print $1}' awkcommand.txt # it will show the first field here we put $1 to get the first field of each line. reme...00
AMAbinash Mishrainabinashmishra.in·Feb 12, 2024 · 2 min readAKS reviewAKS By default when you create a AKS cluster it creates a system node pool. AKS control plane is free. EKS $2.5 per dayIn the system node pool minimum required components will be running. (whatever the nodes we will run we have to pay) Node pools: ...00