Quick learn: How to Create AKS Cluster in Azure | AKS Cluster Creation & App Deployment (Demo)

Short weekly tech update video (14:12 minutes).This week:Shows a break down the fundamentals of AKS cluster configuration but and guides through the deployment of a real-world application on a newly created AKS cluster. It demonstrates the step-by-step process of creating an Azure Kubernetes Service (AKS) cluster using the intuitive Azure Portal.Follow Kubernetes in action, pulling … Read more

Tips and tricks: Kill zombie processes in Linux

In Linux, a zombie process is a terminated process that remains in the process table because its parent process has not yet read its exit status. It occurs when a child process completes but its parent process hasn’t called wait() to retrieve the child’s status. These “defunct” processes consume minimal resources but can clutter the … Read more