Sysadmin Logo
DevOps Docker Kubernetes

Maximizing Redundancy in Kubernetes

In the world of modern cloud-native applications, Kubernetes has become the go-to platform for container orchestration. Its ability to manage large-scale deployments, automate operations, and optimize resources is unmatched. However, the true power of Kubernetes lies in its redundancy mechanisms, which ensure that applications remain highly available, even in the face of failures. In this […]

Sysadmin profile picture
Kubernetes Red hat linux

Deploy NGINX Ingress Controller on AKS Kubernetes using Helm

Step 1 – Allocate Public IP for Ingress The following command will allocate Public IP : az network public-ip create –resource-group [resource-group] –name [name for public IP] –sku Standard –allocation-method static –query publicIp.ipAddress -o tsv Step 2 – Install NGINX Ingress Controller using Helm An ingress controller, because it is a core component of Kubernetes, […]

Loading

DevOps Kubernetes

kubectl Quick Reference

Kubectl autocomplete BASH source <(kubectl completion bash) # set up autocomplete in bash into the current shell, bash-completion package should be installed first. echo “source <(kubectl completion bash)” >> ~/.bashrc # add autocomplete permanently to your bash shell. You can also use a shorthand alias for kubectl that also works with completion: alias k=kubectl complete -o default […]

Loading