Helm 3 - CI/CD with Azure DevOps using Azure Container Registry (ACR) and Azure Kubernetes Service (AKS)
on Jan 30, 2021
I have been bit late to Kubernetes world, but ever since I have started using it, I have been part of a great teams building awesome applications and using Helm package manager. With Helm, you package your Kubernetes application as charts, which are then stored in Helm chart repo. Helm also has a templating engine allowing you to set values in your charts dynamically allowing you to manage your applications more easily. Azure Container Registry (ACR) currently supports publishing Helm 3 charts to ACR and it is currently in preview.
In this post we will see how we can publish a sample Helm chart to ACR and also deploy the application to Azure Kubernetes Service (AKS) by consuming the published chart from ACR. We will also use ACR’s repository scoped tokens - a preview feature which offer great benefits.
Read moreQuickly switch Kubernetes cluster and namespaces with kubectx and kubens
on Dec 29, 2020
Often when working with Kubernetes you might find yourself switching between your clusters or namespaces. I am doing this numerous times lately and I was slow switching using the regular commands. In this post, I would like to highlight two productivity utilities when working with Kubernetes which will make it simple when working with multiple clusters.
Read moreDeploying TIBCO Rendezvous on RedHat Enterprise Linux using Azure DevOps
on Dec 28, 2020
TIBCO Rendezvous (RDV) is one of the popular messaging product for real-time data processing. Predominantly used in Financial corporations to process real-time trading, market data and efficient information flow between control systems. In this post, we will see how we can deploy this messaging application to RedHat Enterprise Linux (RHEL) 7 (on Azure VM) using Azure DevOps.
Read moreTroubleshooting Azure DevOps deployment stuck at 'Queued' status
on Dec 12, 2020
Recently one of our customer was trying to deploy to an VM environment using Azure DevOps and all of their deployments were getting stuck at Queued
status. To their surprise, they had idle Azure DevOps agents to work on the jobs. After scratching head for couple of hours, the fix was not what I had expected…
Publish VSCode extension to VS Marketplace using simplified ChatOps
on Aug 11, 2020
I have previously blogged about publishing VSCode extensions to VSMarketplace (using GitHub actions). However, that workflow relied heavily on the branching strategy and was on assumption that anything that is merged to master
is ready for publishing to VSMarketplace. It worked great, but occasionally I felt the need to test the extension from master
and I wanted a way to approve before I decide to publish to marketplace. In this post we will see how I used ChatOps with the help of GitHub actions and Issues to achieve the same.
Hosting Jekyll website on Azure Static WebApps
on May 25, 2020
Now that Azure now has a free service for hosting static web apps via Azure Static Web Apps, I decided to write a quick post on how to host Jekyll website on Azure Static WebApps. To my surprise it turned out to be quite simple and easy to host.
Read moreAzure DevOps workitems don't show frequently used users? Here's how to fix it.
on May 25, 2020
Ever had an issue where you are just got access to the client Azure DevOps instance, but for some strange reason you find that workitems are unable to populate recently used users, even after you searched for them previously? In this post, we will see what causes it and how to fix it.
Read morePlan your cloud migration with Microsoft Cloud Adoption Framework and Azure DevOps
on May 17, 2020
Microsoft Cloud Adoption Framework (CAF) for Azure is a detailed guidance of patterns and practices to create and implement business and technology strategies necessary for organisations to move to the cloud. According to Microsoft, this guidance is adopted from various customers learnings from moving to cloud and Microsoft itself.
In this post, we will see CAF’s starter template in Azure DevOps Demo generator helps customers Plan
their cloud journey.
EAI_AGAIN error in bash when using Windows Subsystem for Linux (WSL)
on May 5, 2020
Lately I am hooked to WSL and have been using bash as my main terminal. It has auto complete, allows me to connect to my Raspberry PI and it just feels nice. However, I recently hit an issue where in I was not able to run any npm
commands in zsh
shell. Every time I ran any npm
command I received error saying getaddrinfo EAI_AGAIN registry.npmjs.org
. In this short post, I would like to show how I solved it.
Publish VSCode extension using GitHub Actions
on Apr 14, 2020
GitHub Actions allow you to build complex workflows to automate your build and deployment processes. Built on top of Azure Pipelines, Actions allow you to maintain your workflows along with your code. In this post, we will see how we can implement CICD flow for a sample Visual Studio Code extension to deploy it to Visual Studio Marketplace.
Read more